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

Modif RNAseq_XGR.nf to use STAR indexed genome

parent 4a34c96b
No related branches found
No related tags found
No related merge requests found
......@@ -149,13 +149,10 @@ workflow {
}
else {
idx_genome = "${params.idx}"
/* Channel
Channel
.fromPath( idx_genome )
.ifEmpty { error "Cannot find idexed genome reference files" }
.map{it -> [(it.baseName =~ /([^\.]*)/)[0][1], it]}
.set { genome_indexed_input }
*/
mapping_withindex(idx_genome, fastp.out.fastq)
mapping_withindex(genome_indexed_input.collect(), fastp.out.fastq)
htseq_count(mapping_withindex.out.bam, gtf_file)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment