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

kallisto: fix typo :15

parent 699cd563
Branches
Tags
No related merge requests found
...@@ -12,7 +12,7 @@ process index_fasta { ...@@ -12,7 +12,7 @@ process index_fasta {
} }
input: input:
tuble val(file_id), path(fasta) tuple val(file_id), path(fasta)
output: output:
tuple val(file_id), path("*.index*"), emit: index tuple val(file_id), path("*.index*"), emit: index
...@@ -37,13 +37,18 @@ process mapping_fastq { ...@@ -37,13 +37,18 @@ process mapping_fastq {
input: input:
tuple val(index_id), path(index) tuple val(index_id), path(index)
tuple val(pair_id), path(reads) tuple val(file_id), path(reads)
output: output:
tuple val(pair_id), path("${pair_id}"), emit: counts tuple val(file_id), path("${pair_id}"), emit: counts
tuple val(pair_id), path("*_report.txt"), emit: report tuple val(file_id), path("*_report.txt"), emit: report
script: script:
if (file_id instanceof List){
pair_id = file_id[0]
} else {
pair_id = file_id
}
if (reads instanceof List) if (reads instanceof List)
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment