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

add STAR and HTseq to RNAseq_XGR.nf

parent 583e9747
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,8 @@ params.fasta = "" ...@@ -65,7 +65,8 @@ params.fasta = ""
params.idx = "" params.idx = ""
params.fastp_out = "$params.project/fastp/" params.fastp_out = "$params.project/fastp/"
// params.star_mapping_fastq_out = "$params.project/STAR/" params.star_mapping_fastq_out = "$params.project/STAR/"
params.star_index_out = "$params.project/STARindex/"
/* /*
**************************************************************** ****************************************************************
......
...@@ -22,6 +22,9 @@ gffread ${gff3_file} -T -o ${genome_id}.gtf ...@@ -22,6 +22,9 @@ gffread ${gff3_file} -T -o ${genome_id}.gtf
process index_with_gtf { process index_with_gtf {
container = "${container_url}" container = "${container_url}"
label "big_mem_multi_cpus" label "big_mem_multi_cpus"
if (params.star_index_out != "") {
publishDir "results/${params.star_index_out}", mode: 'copy'
}
input: input:
tuple val(genome_id), path(genome_fasta) tuple val(genome_id), path(genome_fasta)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment