浏览代码

更新 'workflow.wdl'

master
chenqingwang 4 年前
父节点
当前提交
cbe50ecb33
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      workflow.wdl

+ 4
- 3
workflow.wdl 查看文件

@@ -2,21 +2,22 @@ import "./tasks/BAMReadCount.wdl" as BAMReadCount

workflow {{ project_name }} {
File reference
File bedfile
File bamfile
String sample_id
String docker
String cluster_config
String disk_size
Int number

call BAMReadCount.BAMReadCount as BAMReadCount {
input:
reference = reference,
bedfile = bedfile,
bamfile = bamfile,
docker = docker,
disk_size = disk_size,
cluster_config=cluster_config,
sample_id=sample_id,
number=number
sample_id=sample_id
}
}

正在加载...
取消
保存