# HG changeset patch # User pjbriggs # Date 1677770664 0 # Node ID 32f1f56bd970a9b518d5a65e6541d5b2a2d67b43 # Parent d94aff5ee62311268e0b74dc90385108078fed10 Updated for Trimmomatic 0.39 and adds quality score options. diff -r d94aff5ee623 -r 32f1f56bd970 README.rst --- a/README.rst Thu Mar 26 04:52:47 2020 -0400 +++ b/README.rst Thu Mar 02 15:24:24 2023 +0000 @@ -71,6 +71,7 @@ ========== ====================================================================== Version Changes ---------- ---------------------------------------------------------------------- +0.39 - Update to Trimmomatic 0.39. 0.38.1 - Bug fix: add dependency on ``coreutils`` so that ``readlink -e`` is supported across both Linux and MacOS platforms. 0.38.0 - Update to Trimmomatic 0.38. @@ -121,6 +122,7 @@ Matthias Bernt (@bernt-matthias) added log and trimlog output. Nicola Soranzo (@nsoranzo) suggested using coreutils to enable cross-platform support across Linux and MacOS. +Cristóbal Gallardo (@gallardoalba) updated Trimmomatic up to version 0.39. Developers ========== diff -r d94aff5ee623 -r 32f1f56bd970 test-data/trimmomatic_pe_r1_paired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r1_paired_out1.fastq.gz has changed diff -r d94aff5ee623 -r 32f1f56bd970 test-data/trimmomatic_pe_r1_unpaired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r1_unpaired_out1.fastq.gz has changed diff -r d94aff5ee623 -r 32f1f56bd970 test-data/trimmomatic_pe_r2_paired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r2_paired_out1.fastq.gz has changed diff -r d94aff5ee623 -r 32f1f56bd970 test-data/trimmomatic_pe_r2_unpaired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r2_unpaired_out1.fastq.gz has changed diff -r d94aff5ee623 -r 32f1f56bd970 test-data/trimmomatic_se_out1.fastq.gz Binary file test-data/trimmomatic_se_out1.fastq.gz has changed diff -r d94aff5ee623 -r 32f1f56bd970 test-data/trimmomatic_se_out2.err --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/trimmomatic_se_out2.err Thu Mar 02 15:24:24 2023 +0000 @@ -0,0 +1,4 @@ +TrimmomaticSE: Started with arguments: + -threads 1 fastq_in.fastqsanger fastq_out.fastqsanger SLIDINGWINDOW:4:20 -trimlog trimlog -phred33 +Input Reads: 10 Surviving: 8 (80.00%) Dropped: 2 (20.00%) +TrimmomaticSE: Completed successfully diff -r d94aff5ee623 -r 32f1f56bd970 trimmomatic.xml --- a/trimmomatic.xml Thu Mar 26 04:52:47 2020 -0400 +++ b/trimmomatic.xml Thu Mar 02 15:24:24 2023 +0000 @@ -1,10 +1,10 @@ - + flexible read trimming tool for Illumina NGS data trimmomatic_macros.xml - trimmomatic + trimmomatic + + + + + + + + + + + + if [ -z "\$TRIMMOMATIC_JAR_PATH" ]; then export TRIMMOMATIC_JAR_PATH=\$(dirname \$(readlink -e \$(which trimmomatic))); fi if [ -z "\$TRIMMOMATIC_ADAPTERS_PATH" ]; then export TRIMMOMATIC_ADAPTERS_PATH=\$(dirname \$(readlink -e \$(which trimmomatic)))/adapters; fi + 0.39 + 0