Skip to content

Commit

Permalink
Fixed join in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Schmytzi committed Oct 31, 2024
1 parent 173bff3 commit 0261137
Show file tree
Hide file tree
Showing 2 changed files with 219 additions and 49 deletions.
6 changes: 5 additions & 1 deletion subworkflows/local/methylation/tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ nextflow_workflow {
"""
input[0] = SHORT_VARIANT_CALLING.out.snp_calls_vcf
input[1] = SHORT_VARIANT_CALLING.out.snp_calls_tbi
input[2] = MINIMAP2_ALIGN.out.bam.join(MINIMAP2_ALIGN.out.index)
input[2] = MINIMAP2_ALIGN.out.bam
.join(MINIMAP2_ALIGN.out.index)
.map { meta, bam, bai ->
[ [ id : meta.id ], bam, bai ]
}
input[3] = PREPARE_GENOME.out.fasta
input[4] = PREPARE_GENOME.out.fai
"""
Expand Down
Loading

0 comments on commit 0261137

Please sign in to comment.