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 {
input:
set pair_id, file(reads) from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*" into counts_files
......@@ -104,7 +104,7 @@ process mapping_fastq {
input:
file reads from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*" into count_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 "*" into counts_files
......
......@@ -24,7 +24,7 @@ process mapping_fastq {
input:
file reads from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
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