Skip to content

Commit c5bccee

Browse files
authored
bugfix for type of some output files (#6735)
1 parent 84ade40 commit c5bccee

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

scripts/cnv_wdl/somatic/cnv_somatic_pair_workflow.wdl

+13-8
Original file line numberDiff line numberDiff line change
@@ -515,9 +515,9 @@ workflow CNVSomaticPairWorkflow {
515515
output {
516516
File preprocessed_intervals = PreprocessIntervals.preprocessed_intervals
517517

518-
File read_counts_entity_id_tumor = CollectCountsTumor.entity_id
518+
String read_counts_entity_id_tumor = CollectCountsTumor.entity_id
519519
File read_counts_tumor = CollectCountsTumor.counts
520-
File allelic_counts_entity_id_tumor = CollectAllelicCountsTumor.entity_id
520+
String allelic_counts_entity_id_tumor = CollectAllelicCountsTumor.entity_id
521521
File allelic_counts_tumor = CollectAllelicCountsTumor.allelic_counts
522522
File denoised_copy_ratios_tumor = DenoiseReadCountsTumor.denoised_copy_ratios
523523
File standardized_copy_ratios_tumor = DenoiseReadCountsTumor.standardized_copy_ratios
@@ -545,9 +545,9 @@ workflow CNVSomaticPairWorkflow {
545545
Float scaled_delta_MAD_value_tumor = PlotDenoisedCopyRatiosTumor.scaled_delta_MAD_value
546546
File modeled_segments_plot_tumor = PlotModeledSegmentsTumor.modeled_segments_plot
547547

548-
File? read_counts_entity_id_normal = CollectCountsNormal.entity_id
548+
String? read_counts_entity_id_normal = CollectCountsNormal.entity_id
549549
File? read_counts_normal = CollectCountsNormal.counts
550-
File? allelic_counts_entity_id_normal = CollectAllelicCountsNormal.entity_id
550+
String? allelic_counts_entity_id_normal = CollectAllelicCountsNormal.entity_id
551551
File? allelic_counts_normal = CollectAllelicCountsNormal.allelic_counts
552552
File? denoised_copy_ratios_normal = DenoiseReadCountsNormal.denoised_copy_ratios
553553
File? standardized_copy_ratios_normal = DenoiseReadCountsNormal.standardized_copy_ratios
@@ -575,10 +575,15 @@ workflow CNVSomaticPairWorkflow {
575575
Float? scaled_delta_MAD_value_normal = PlotDenoisedCopyRatiosNormal.scaled_delta_MAD_value
576576
File? modeled_segments_plot_normal = PlotModeledSegmentsNormal.modeled_segments_plot
577577

578-
File oncotated_called_file_tumor = select_first([CNVOncotatorWorkflow.oncotated_called_file, "null"])
579-
File oncotated_called_gene_list_file_tumor = select_first([CNVOncotatorWorkflow.oncotated_called_gene_list_file, "null"])
580-
File funcotated_called_file_tumor = select_first([CNVFuncotateSegmentsWorkflow.funcotated_seg_simple_tsv, "null"])
581-
File funcotated_called_gene_list_file_tumor = select_first([CNVFuncotateSegmentsWorkflow.funcotated_gene_list_tsv, "null"])
578+
# File? oncotated_called_file_tumor = select_first([CNVOncotatorWorkflow.oncotated_called_file, "null"])
579+
# File? oncotated_called_gene_list_file_tumor = select_first([CNVOncotatorWorkflow.oncotated_called_gene_list_file, "null"])
580+
# File? funcotated_called_file_tumor = select_first([CNVFuncotateSegmentsWorkflow.funcotated_seg_simple_tsv, "null"])
581+
# File? funcotated_called_gene_list_file_tumor = select_first([CNVFuncotateSegmentsWorkflow.funcotated_gene_list_tsv, "null"])
582+
583+
File? oncotated_called_file_tumor = CNVOncotatorWorkflow.oncotated_called_file
584+
File? oncotated_called_gene_list_file_tumor = CNVOncotatorWorkflow.oncotated_called_gene_list_file
585+
File? funcotated_called_file_tumor = CNVFuncotateSegmentsWorkflow.funcotated_seg_simple_tsv
586+
File? funcotated_called_gene_list_file_tumor = CNVFuncotateSegmentsWorkflow.funcotated_gene_list_tsv
582587
}
583588
}
584589

0 commit comments

Comments
 (0)