Skip to content
Snippets Groups Projects
Commit 82ac6ea3 authored by elabaron's avatar elabaron
Browse files

src/RibosomeProfiling.nf : don't save intermediaire fastq

parent 2baa9895
No related branches found
No related tags found
No related merge requests found
...@@ -127,7 +127,7 @@ process fastqc_raw { ...@@ -127,7 +127,7 @@ process fastqc_raw {
process trimming { process trimming {
tag "$file_id" tag "$file_id"
publishDir "${params.output}/01_cutadapt/", mode: 'copy' //publishDir "${params.output}/01_cutadapt/", mode: 'copy'
echo true echo true
input: input:
...@@ -179,7 +179,7 @@ process fastqc_cut { ...@@ -179,7 +179,7 @@ process fastqc_cut {
process rRNA_removal { process rRNA_removal {
tag "$file_id" tag "$file_id"
publishDir "${params.output}/02_rRNA_depletion/", mode: 'copy' //publishDir "${params.output}/02_rRNA_depletion/", mode: 'copy'
input: input:
set file_id, file(reads) from CUTADAPT_OUTPUT_FILTER set file_id, file(reads) from CUTADAPT_OUTPUT_FILTER
...@@ -660,7 +660,7 @@ process multiqc { ...@@ -660,7 +660,7 @@ process multiqc {
input: input:
// file ('fastqc/*') from OUTPUT_FASTQC_RAW.collect().ifEmpty([]) // file ('fastqc/*') from OUTPUT_FASTQC_RAW.collect().ifEmpty([])
file ('*') from CUTADAPT_LOG.collect().ifEmpty([]) // file ('*') from CUTADAPT_LOG.collect().ifEmpty([])
file ('fastqc/*') from OUTPUT_FASTQC_CUT.collect().ifEmpty([]) file ('fastqc/*') from OUTPUT_FASTQC_CUT.collect().ifEmpty([])
file ('*') from FILTER_LOG.collect().ifEmpty([]) file ('*') from FILTER_LOG.collect().ifEmpty([])
// file ('fastqc/*') from OUTPUT_FASTQC_FILTER.collect().ifEmpty([]) // file ('fastqc/*') from OUTPUT_FASTQC_FILTER.collect().ifEmpty([])
...@@ -669,7 +669,7 @@ process multiqc { ...@@ -669,7 +669,7 @@ process multiqc {
file ('*') from HTSEQ_COUNT.collect().ifEmpty([]) file ('*') from HTSEQ_COUNT.collect().ifEmpty([])
file ('*') from POSTGENOME_LOG.collect().ifEmpty([]) file ('*') from POSTGENOME_LOG.collect().ifEmpty([])
// file ('fastqc/*') from OUTPUT_FASTQC_POSTGENOME.collect().ifEmpty([]) // file ('fastqc/*') from OUTPUT_FASTQC_POSTGENOME.collect().ifEmpty([])
file ('*') from RNASEQC_OUTPUT.collect().ifEmpty([]) // file ('*') from RNASEQC_OUTPUT.collect().ifEmpty([])
output: output:
file "multiqc_report.html" into multiqc_report file "multiqc_report.html" into multiqc_report
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment