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

fastp: fix accel_s1plus protocol

parent a7b03ba6
No related branches found
No related tags found
No related merge requests found
...@@ -111,18 +111,19 @@ process fastp_accel_1splus { ...@@ -111,18 +111,19 @@ process fastp_accel_1splus {
--detect_adapter_for_pe \ --detect_adapter_for_pe \
--stdout \ --stdout \
--in1 ${reads[0]} \ --in1 ${reads[0]} \
--in2 ${reads[1]} \ --in2 ${reads[1]} 2> /dev/null | \
--out1 ${file_prefix}_R1_trim.fastq.gz \
--out2 ${file_prefix}_R2_trim.fastq.gz | \
fastp --thread ${task.cpus} \ fastp --thread ${task.cpus} \
--stdin \ --stdin \
--interleaved_in \ --interleaved_in \
--trim_front1=10 \ --trim_front1=10 \
--trim_front2=10 \ --trim_front2=10 \
--disable_adapter_trimming \
--qualified_quality_phred 20 \ --qualified_quality_phred 20 \
--disable_length_filtering \ --disable_length_filtering \
--detect_adapter_for_pe \ --detect_adapter_for_pe \
${params.fastp} \ ${params.fastp} \
--out1 ${file_prefix}_R1_trim.fastq.gz \
--out2 ${file_prefix}_R2_trim.fastq.gz \
--html ${file_prefix}.html \ --html ${file_prefix}.html \
--json ${file_prefix}_fastp.json \ --json ${file_prefix}_fastp.json \
--report_title ${file_prefix} --report_title ${file_prefix}
...@@ -135,15 +136,16 @@ process fastp_accel_1splus { ...@@ -135,15 +136,16 @@ process fastp_accel_1splus {
--disable_trim_poly_g \ --disable_trim_poly_g \
--detect_adapter_for_pe \ --detect_adapter_for_pe \
--stdout \ --stdout \
--in1 ${reads[0]} \ --in1 ${reads[0]} 2> /dev/null | \
--out1 ${file_prefix}_R1_trim.fastq.gz \
fastp --thread ${task.cpus} \ fastp --thread ${task.cpus} \
--disable_adapter_trimming \
--stdin \ --stdin \
--trim_front1=10 \ --trim_front1=10 \
--qualified_quality_phred 20 \ --qualified_quality_phred 20 \
--disable_length_filtering \ --disable_length_filtering \
--detect_adapter_for_pe \ --detect_adapter_for_pe \
${params.fastp} \ ${params.fastp} \
--out1 ${file_prefix}_trim.fastq.gz \
--html ${file_prefix}.html \ --html ${file_prefix}.html \
--json ${file_prefix}_fastp.json \ --json ${file_prefix}_fastp.json \
--report_title ${file_prefix} --report_title ${file_prefix}
......
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