Skip to content

Commit

Permalink
Don't remove sample to early
Browse files Browse the repository at this point in the history
  • Loading branch information
FriederikeHanssen committed Sep 12, 2023
1 parent b424bde commit 5ea0e57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ workflow BAM_VARIANT_CALLING_TUMOR_ONLY_MUTECT2 {
GATHERPILEUPSUMMARIES(pileup_table_to_merge, dict.map{ meta, dict -> [ dict ] })

// Mix intervals and no_intervals channels together
pileup_table = Channel.empty().mix(GATHERPILEUPSUMMARIES.out.table, pileup_table_branch.no_intervals).map{meta, table -> [ meta - meta.subMap('sample', 'num_intervals') + [id:meta.sample], table ] }
pileup_table = Channel.empty().mix(GATHERPILEUPSUMMARIES.out.table, pileup_table_branch.no_intervals).map{meta, table -> [ meta - meta.subMap('num_intervals') + [id:meta.sample], table ] }

// Contamination and segmentation tables created using calculatecontamination on the pileup summary table
CALCULATECONTAMINATION(pileup_table.map{ meta, table -> [ meta, table, [] ] })
Expand Down

0 comments on commit 5ea0e57

Please sign in to comment.