|
|
@@ -53,13 +53,36 @@ workflow {{ project_name }} { |
|
|
|
cluster_config=BIGcluster_config |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
call Dedup.Dedup as tumor_Dedup { |
|
|
|
input: |
|
|
|
SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR, |
|
|
|
sorted_bam=tumor_mapping.sorted_bam, |
|
|
|
sorted_bam_index=tumor_mapping.sorted_bam_index, |
|
|
|
sample=sample_name, |
|
|
|
type="tumor" |
|
|
|
docker=SENTIEONdocker, |
|
|
|
disk_size=disk_size, |
|
|
|
cluster_config=BIGcluster_config |
|
|
|
} |
|
|
|
|
|
|
|
call Dedup.Dedup as normal_Dedup { |
|
|
|
input: |
|
|
|
SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR, |
|
|
|
sorted_bam=normal_mapping.sorted_bam, |
|
|
|
sorted_bam_index=normal_mapping.sorted_bam_index, |
|
|
|
sample=sample_name, |
|
|
|
type="normal" |
|
|
|
docker=SENTIEONdocker, |
|
|
|
disk_size=disk_size, |
|
|
|
cluster_config=BIGcluster_config |
|
|
|
} |
|
|
|
|
|
|
|
call delly.delly as delly { |
|
|
|
input: |
|
|
|
tumor_bam=tumor_mapping.sorted_bam, |
|
|
|
tumor_bam_idx=tumor_mapping.sorted_bam_index, |
|
|
|
normal_bam=normal_mapping.sorted_bam, |
|
|
|
normal_bam_idx=normal_mapping.sorted_bam_index, |
|
|
|
tumor_bam=tumor_Dedup.Dedup_bam, |
|
|
|
tumor_bam_idx=tumor_Dedup.Dedup_bam_index, |
|
|
|
normal_bam=normal_Dedup.Dedup_bam, |
|
|
|
normal_bam_idx=normal_Dedup.Dedup_bam_index, |
|
|
|
ref_dir=ref_dir, |
|
|
|
fasta=fasta, |
|
|
|
sample_name=sample_name, |