浏览代码

更新 'workflow.wdl'

master
meng 2 年前
父节点
当前提交
88f6719e71
共有 1 个文件被更改,包括 26 次插入1 次删除
  1. +26
    -1
      workflow.wdl

+ 26
- 1
workflow.wdl 查看文件

@@ -1 +1,26 @@
import "./tasks/fastp.wdl" as fastp
import "./tasks/fastp.wdl" as fastp

workflow {{ project_name }} {
input{
Array[String] samples
File fastq_dir
String docker
String cluster_config
String disk_size

}

call fastp.fastp as fastp{
input:
samples=samples,
fastq_dir=fastq_dir,
docker=docker,
cluster_config=cluster_config,
disk_size=disk_size
}


}

正在加载...
取消
保存