Skip to content
Snippets Groups Projects
Commit adc1ba99 authored by hpolvech's avatar hpolvech
Browse files

RNASeq.nf : add trimming

parent bcf610c3
Branches
No related tags found
No related merge requests found
...@@ -29,3 +29,24 @@ process adaptor_removal { ...@@ -29,3 +29,24 @@ process adaptor_removal {
${reads[0]} ${reads[1]} > ${pair_id}_report.txt ${reads[0]} ${reads[1]} > ${pair_id}_report.txt
""" """
} }
process trimming {
tag "${reads}"
cpus 4
publishDir "results/fastq/trimming/", mode: 'copy'
input:
file reads from fastq_files_cut
output:
file "*_trim_R{1,2}.fastq.gz" into fastq_files_trim
script:
"""
UrQt --t 20 --m ${task.cpus} --gz \
--in ${reads[0]} --inpair ${reads[1]} \
--out ${reads[0].baseName}_trim_R1.fastq.gz --outpair ${reads[1].baseName}_trim_R2.fastq.gz \
> ${reads[0].baseName}_trimming_report.txt
"""
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment