Skip to content

Commit

Permalink
fix manta subwf
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnieuwk committed Feb 4, 2025
1 parent fc00514 commit 1fff578
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions subworkflows/local/bam_variant_calling_manta/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ workflow BAM_VARIANT_CALLING_MANTA {
//

def ch_manta_input = ch_crams
.map { meta, cram, crai ->
def new_meta = meta + [caller:"manta"]
[ new_meta, cram, crai ]
}
.combine(ch_contigs)
.dump(tag: 'manta_input', pretty: true)

Expand Down

0 comments on commit 1fff578

Please sign in to comment.