Skip to content
Snippets Groups Projects
Verified Commit d69ff6ea authored by Laurent Modolo's avatar Laurent Modolo
Browse files

cutadapt: fix typo :34

parent 18e214ae
No related branches found
No related tags found
No related merge requests found
......@@ -19,18 +19,19 @@ process adaptor_removal {
path "*_report.txt", emit: report
script:
if (reads instanceof List) {
if (reads instanceof List) {
"""
cutadapt ${params.adaptor_removal} \
-o ${pair_id}_cut_R1.fastq.gz -p ${pair_id}_cut_R2.fastq.gz \
${reads[0]} ${reads[1]} > ${pair_id}_report.txt
"""
} else {
} else {
"""
cutadapt ${params.adaptor_removal} \
-o ${file_id}_cut.fastq.gz \
${reads} > ${file_id}_report.txt
"""
}
}
params.adaptor_removal_pairedend = "-a ${adapter_3_prim} -g ${adapter_5_prim} -A ${adapter_3_prim} -G ${adapter_5_prim}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment