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

RSEM: change toList to collect

parent c7a2d66d
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ process mapping_fastq { ...@@ -71,7 +71,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
...@@ -120,7 +120,7 @@ process mapping_fastq { ...@@ -120,7 +120,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
......
params.fastq = "$baseDir/data/fastq/*.fastq" params.fastq = "$baseDir/data/fastq/*.fastq"
params.index = "$baseDir/data/index/*.index*" params.index = "$baseDir/data/index/*.index*"
params.mean = 300 params.mean = 125
params.sd = 100 params.sd = 100
log.info "fastq files : ${params.fastq}" log.info "fastq files : ${params.fastq}"
...@@ -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