Browse Source

修改错误参数

tags/v1.0
linzipeng 6 years ago
parent
commit
edcfc9152e
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      workflow.wdl

+ 4
- 4
workflow.wdl View File

@@ -1,5 +1,5 @@
import "./tasks/Trim.wdl" as Trim
import "./tasks/Mapping.wdl" as Meapping
import "./tasks/Mapping.wdl" as Mapping
import "./tasks/Dedup.wdl" as Dedup
import "./tasks/Call_meth.wdl" as Call_meth

@@ -20,7 +20,7 @@ workflow {{ project_name }} {



call BQSR.BQSR as BQSR {
call Trim.Trim as Trim {
input:
sample=sample,
ref_dir=ref_dir,
@@ -30,7 +30,7 @@ workflow {{ project_name }} {
disk_size=disk_size,
cluster_config=cluster_config
}
call mapping.mapping as mapping {
call Mapping.Mapping as Mapping {
input:
sample=sample,
ref_dir=ref_dir,
@@ -48,7 +48,7 @@ workflow {{ project_name }} {
disk_size=disk_size,
cluster_config=cluster_config
}
call Haplotyper.Haplotyper as Haplotyper {
call Call_meth.Call_meth as Call_meth {
input:
ref_dir=ref_dir,
Dedup_bam=Dedup_R1_val_1_bismark_bt2_pe.deduplicated.bam,

Loading…
Cancel
Save