Skip to content
Snippets Groups Projects
Commit b1330359 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Remove set ends in trimData

parent 7b6f7324
Branches
Tags
2 merge requests!37v0.0.1,!14Resolve "process_createManifest"
Pipeline #5743 failed with stages
in 32 minutes and 5 seconds
......@@ -189,10 +189,8 @@ process trimData {
# trim fastqs
if [ '${ends_trimData}' == 'se' ]
then
ends='se'
trim_galore --gzip -q 25 --illumina --length 35 --basename ${repRID} -j `nproc` ${fastq[0]} 1>>${repRID}.trimData.log 2>>${repRID}.trimData.err;
else
ends='pe'
trim_galore --gzip -q 25 --illumina --length 35 --paired --basename ${repRID} -j `nproc` ${fastq[0]} ${fastq[1]} 1>>${repRID}.trimData.log 2>>${repRID}.trimData.err;
fi
"""
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment