@@ -515,9 +515,9 @@ workflow CNVSomaticPairWorkflow {
515
515
output {
516
516
File preprocessed_intervals = PreprocessIntervals .preprocessed_intervals
517
517
518
- File read_counts_entity_id_tumor = CollectCountsTumor .entity_id
518
+ String read_counts_entity_id_tumor = CollectCountsTumor .entity_id
519
519
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
521
521
File allelic_counts_tumor = CollectAllelicCountsTumor .allelic_counts
522
522
File denoised_copy_ratios_tumor = DenoiseReadCountsTumor .denoised_copy_ratios
523
523
File standardized_copy_ratios_tumor = DenoiseReadCountsTumor .standardized_copy_ratios
@@ -545,9 +545,9 @@ workflow CNVSomaticPairWorkflow {
545
545
Float scaled_delta_MAD_value_tumor = PlotDenoisedCopyRatiosTumor .scaled_delta_MAD_value
546
546
File modeled_segments_plot_tumor = PlotModeledSegmentsTumor .modeled_segments_plot
547
547
548
- File ? read_counts_entity_id_normal = CollectCountsNormal .entity_id
548
+ String ? read_counts_entity_id_normal = CollectCountsNormal .entity_id
549
549
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
551
551
File ? allelic_counts_normal = CollectAllelicCountsNormal .allelic_counts
552
552
File ? denoised_copy_ratios_normal = DenoiseReadCountsNormal .denoised_copy_ratios
553
553
File ? standardized_copy_ratios_normal = DenoiseReadCountsNormal .standardized_copy_ratios
@@ -575,10 +575,15 @@ workflow CNVSomaticPairWorkflow {
575
575
Float ? scaled_delta_MAD_value_normal = PlotDenoisedCopyRatiosNormal .scaled_delta_MAD_value
576
576
File ? modeled_segments_plot_normal = PlotModeledSegmentsNormal .modeled_segments_plot
577
577
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
582
587
}
583
588
}
584
589
0 commit comments