Skip to content

Commit

Permalink
fix: trimmomatic
Browse files Browse the repository at this point in the history
  • Loading branch information
jlanga committed Apr 15, 2024
1 parent 4396634 commit f047d0c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions workflow/rules/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ rule qc_trimmomatic:
trimmomatic PE \
-threads {threads} \
-{params.phred} \
<(gzip --decompress --stdout {input.forward_}) \
<(gzip --decompress --stdout {input.reverse_}) \
>(pigz --fast > {output.forward_}) \
>(pigz --fast > {output.forward_unp}) \
>(pigz --fast > {output.reverse_}) \
>(pigz --fast > {output.reverse_unp}) \
{input.forward_} \
{input.reverse_} \
{output.forward_} \
{output.forward_unp} \
{output.reverse_} \
{output.reverse_unp} \
ILLUMINACLIP:{params.adaptor}:2:30:10 \
{params.trimmomatic_params} \
2> {log} 1>&2
Expand Down

0 comments on commit f047d0c

Please sign in to comment.