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

Bowtie2: change toList to collect

parent 3680aa85
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,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:
set pair_id, "*.bam" into bam_files
......@@ -114,7 +114,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:
set pair_id, "*.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