# HG changeset patch # User pjbriggs # Date 1677768498 0 # Node ID 9b273be64c252bfb0355dc9b04b83475962cbc81 # Parent 79f875f98770e45c000a6e633d7d906369f7a3c7 Updated for Trimmomatic 0.39 diff -r 79f875f98770 -r 9b273be64c25 README.rst --- a/README.rst Thu Mar 26 08:35:18 2020 +0000 +++ b/README.rst Thu Mar 02 14:48:18 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 79f875f98770 -r 9b273be64c25 test-data/trimmomatic_pe_r1_paired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r1_paired_out1.fastq.gz has changed diff -r 79f875f98770 -r 9b273be64c25 test-data/trimmomatic_pe_r1_unpaired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r1_unpaired_out1.fastq.gz has changed diff -r 79f875f98770 -r 9b273be64c25 test-data/trimmomatic_pe_r2_paired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r2_paired_out1.fastq.gz has changed diff -r 79f875f98770 -r 9b273be64c25 test-data/trimmomatic_pe_r2_unpaired_out1.fastq.gz Binary file test-data/trimmomatic_pe_r2_unpaired_out1.fastq.gz has changed diff -r 79f875f98770 -r 9b273be64c25 test-data/trimmomatic_se_out1.fastq.gz Binary file test-data/trimmomatic_se_out1.fastq.gz has changed diff -r 79f875f98770 -r 9b273be64c25 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 14:48:18 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 79f875f98770 -r 9b273be64c25 trimmomatic.xml --- a/trimmomatic.xml Thu Mar 26 08:35:18 2020 +0000 +++ b/trimmomatic.xml Thu Mar 02 14:48:18 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