浏览代码

dedup

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

+ 4
- 3
workflow.wdl 查看文件

import "./tasks/mapping.wdl" as mapping import "./tasks/mapping.wdl" as mapping
import "./tasks/delly.wdl" as delly import "./tasks/delly.wdl" as delly
import "./tasks/Dedup.wdl" as Dedup
import "./tasks/bcf2vcf.wdl" as bcf2vcf import "./tasks/bcf2vcf.wdl" as bcf2vcf


workflow {{ project_name }} {
workflow project_name {
String SENTIEON_INSTALL_DIR String SENTIEON_INSTALL_DIR
String SENTIEONdocker String SENTIEONdocker
sorted_bam=tumor_mapping.sorted_bam, sorted_bam=tumor_mapping.sorted_bam,
sorted_bam_index=tumor_mapping.sorted_bam_index, sorted_bam_index=tumor_mapping.sorted_bam_index,
sample=sample_name, sample=sample_name,
type="tumor"
type="tumor",
docker=SENTIEONdocker, docker=SENTIEONdocker,
disk_size=disk_size, disk_size=disk_size,
cluster_config=BIGcluster_config cluster_config=BIGcluster_config
sorted_bam=normal_mapping.sorted_bam, sorted_bam=normal_mapping.sorted_bam,
sorted_bam_index=normal_mapping.sorted_bam_index, sorted_bam_index=normal_mapping.sorted_bam_index,
sample=sample_name, sample=sample_name,
type="normal"
type="normal",
docker=SENTIEONdocker, docker=SENTIEONdocker,
disk_size=disk_size, disk_size=disk_size,
cluster_config=BIGcluster_config cluster_config=BIGcluster_config

正在加载...
取消
保存