Skip to content

Commit

Permalink
Collect fix -> Pipeline works again with all samples. Not only first …
Browse files Browse the repository at this point in the history
…sample
  • Loading branch information
DSchreyer committed Jun 26, 2023
1 parent 09bdf9a commit 7dcbbac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/circdna.nf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (!(params.input_format == "FASTQ" | params.input_format == "BAM")) {
}

// Modify fasta channel to include meta data
ch_fasta_meta = ch_fasta.map{ it -> [[id:it[0].baseName], it] }
ch_fasta_meta = ch_fasta.map{ it -> [[id:it[0].baseName], it] }.collect()

branch = params.circle_identifier.split(",")
run_circexplorer2 = ("circexplorer2" in branch)
Expand Down

0 comments on commit 7dcbbac

Please sign in to comment.