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

Kallisto: change toList to collect

parent 9af182a1
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ process mapping_fastq { ...@@ -59,7 +59,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:
file "*" into counts_files file "*" into counts_files
...@@ -104,7 +104,7 @@ process mapping_fastq { ...@@ -104,7 +104,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 "*" into count_files file "*" into count_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:
file "*" into counts_files file "*" into counts_files
......
...@@ -24,7 +24,7 @@ process mapping_fastq { ...@@ -24,7 +24,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 "*" into count_files file "*" into count_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