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

Modif RNAseq_XGR.nf to provide indexed STAR genome

parent 2d4b529a
No related branches found
No related tags found
No related merge requests found
......@@ -149,12 +149,13 @@ 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(genome_indexed_input.collect(), fastp.out.fastq)
*/
mapping_withindex(idx_genome, 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