Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed count-collection tasks to use NIO for BAMs in CNV WDLs. #5015

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/cnv_wdl/cnv_common_tasks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ task AnnotateIntervals {

task CollectCounts {
File intervals
File bam
File bam_idx
String bam
String bam_idx
File ref_fasta
File ref_fasta_fai
File ref_fasta_dict
Expand Down Expand Up @@ -145,8 +145,8 @@ task CollectCounts {

task CollectAllelicCounts {
File common_sites
File bam
File bam_idx
String bam
String bam_idx
File ref_fasta
File ref_fasta_fai
File ref_fasta_dict
Expand Down
4 changes: 2 additions & 2 deletions scripts/cnv_wdl/somatic/cnv_somatic_pair_workflow.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ workflow CNVSomaticPairWorkflow {
output {
File preprocessed_intervals = PreprocessIntervals.preprocessed_intervals

File read_counts_entity_id_tumor = CollectCountsTumor.entity_id
String read_counts_entity_id_tumor = CollectCountsTumor.entity_id
File read_counts_tumor = CollectCountsTumor.counts
File allelic_counts_entity_id_tumor = CollectAllelicCountsTumor.entity_id
File allelic_counts_tumor = CollectAllelicCountsTumor.allelic_counts
Expand All @@ -443,7 +443,7 @@ workflow CNVSomaticPairWorkflow {
File scaled_delta_MAD_tumor = PlotDenoisedCopyRatiosTumor.scaled_delta_MAD
File modeled_segments_plot_tumor = PlotModeledSegmentsTumor.modeled_segments_plot

File? read_counts_entity_id_normal = CollectCountsNormal.entity_id
String? read_counts_entity_id_normal = CollectCountsNormal.entity_id
File? read_counts_normal = CollectCountsNormal.counts
File? allelic_counts_entity_id_normal = CollectAllelicCountsNormal.entity_id
File? allelic_counts_normal = CollectAllelicCountsNormal.allelic_counts
Expand Down