Skip to content
Snippets Groups Projects
Commit a5141a5c authored by Xavier Grand's avatar Xavier Grand
Browse files

Modif Channel idx_genome.

parent 6154458f
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,7 @@ workflow { ...@@ -146,7 +146,7 @@ workflow {
else { else {
idx_genome = "${params.idx}" idx_genome = "${params.idx}"
Channel Channel
.fromPath( idx_genome, type: 'dir' ) .of( idx_genome )
.set { genome_indexed_input } .set { genome_indexed_input }
mapping_withindex(genome_indexed_input.collect(), fastp.out.fastq) mapping_withindex(genome_indexed_input.collect(), fastp.out.fastq)
stats_bam(mapping_withindex.out.bam) stats_bam(mapping_withindex.out.bam)
......
...@@ -31,7 +31,7 @@ process htseq_count { ...@@ -31,7 +31,7 @@ process htseq_count {
} }
input: input:
tuple val(file_id), path(bam), path(bai) tuple val(file_id), path(bam), path(bai)
path (gtf) val(gtf)
output: output:
path "${file_id}.tsv", emit: counts path "${file_id}.tsv", emit: counts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment