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

add STAR and HTseq to RNAseq_XGR.nf

parent 181102e8
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ workflow { ...@@ -116,7 +116,7 @@ workflow {
//########################## PREPROCESSING #################### //########################## PREPROCESSING ####################
// fastp // fastp
fastp(fastq_files) fastp(fastq_files.collect())
//########################## QUALITY CHECKS ################### //########################## QUALITY CHECKS ###################
...@@ -142,7 +142,7 @@ workflow { ...@@ -142,7 +142,7 @@ workflow {
.set { genome_file } .set { genome_file }
index_with_gtf(genome_file, gtf_file.collect()) index_with_gtf(genome_file, gtf_file.collect())
mapping_fastq(index_with_gtf.out.index, fastq_files) mapping_fastq(index_with_gtf.out.index, fastp.out.fastq)
} }
else { else {
idx_genome = "${params.idx}/*" idx_genome = "${params.idx}/*"
...@@ -150,7 +150,7 @@ workflow { ...@@ -150,7 +150,7 @@ workflow {
.fromPath( idx_genome ) .fromPath( idx_genome )
.ifEmpty { error "Cannot find idexed genome reference files" } .ifEmpty { error "Cannot find idexed genome reference files" }
.set { genome_indexed_input } .set { genome_indexed_input }
mapping_fastq(genome_indexed_input, fastq_files) mapping_fastq(genome_indexed_input, fastp.out.fastq)
} }
//######################## HTseq COUNT ######################### //######################## HTseq COUNT #########################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment