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 { ...@@ -64,7 +64,7 @@ process mapping_fastq {
input: input:
set pair_id, file(reads) from fastq_files set pair_id, file(reads) from fastq_files
file index from index_files.toList() file index from index_files.collect()
output: output:
set pair_id, "*.bam" into bam_files set pair_id, "*.bam" into bam_files
...@@ -114,7 +114,7 @@ process mapping_fastq { ...@@ -114,7 +114,7 @@ process mapping_fastq {
input: input:
file reads from fastq_files file reads from fastq_files
file index from index_files.toList() file index from index_files.collect()
output: output:
file "*.bam" into bam_files file "*.bam" into bam_files
......
...@@ -20,7 +20,7 @@ process mapping_fastq { ...@@ -20,7 +20,7 @@ process mapping_fastq {
input: input:
set pair_id, file(reads) from fastq_files set pair_id, file(reads) from fastq_files
file index from index_files.toList() file index from index_files.collect()
output: output:
set pair_id, "*.bam" into bam_files set pair_id, "*.bam" into bam_files
......
...@@ -19,7 +19,7 @@ process mapping_fastq { ...@@ -19,7 +19,7 @@ process mapping_fastq {
input: input:
file reads from fastq_files file reads from fastq_files
file index from index_files.toList() file index from index_files.collect()
output: output:
file "*.bam" into bam_files 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