Skip to content
Snippets Groups Projects
Verified Commit 3680aa85 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

Bowtie: change toList to collect

parent 78bebd72
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ process mapping_fastq {
input:
set pair_id, file(reads) from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*.bam" into bam_files
......@@ -117,7 +117,7 @@ process mapping_fastq {
input:
file reads from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*.bam" into bam_files
......
......@@ -20,7 +20,7 @@ process mapping_fastq {
input:
set pair_id, file(reads) from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*.bam" into bam_files
......
......@@ -19,7 +19,7 @@ process mapping_fastq {
input:
file reads from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*.bam" into bam_files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment