annotate README.rst @ 16:9a38087e3bfd draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
author iuc
date Sun, 14 Jan 2024 11:00:33 +0000
parents 32f1f56bd970
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
1 Trimmomatic: flexible read trimming tool for Illumina NGS data
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
2 ==============================================================
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
3
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
4 Galaxy tool wrapper for the Trimmomatic program, which provides various functions for
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
5 manipluating Illumina FASTQ files (both single and paired-end).
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
6
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
7 Trimmomatic has been developed within Bjorn Usadel's group at RWTH Aachen university
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
8 http://www.usadellab.org/cms/index.php?page=trimmomatic
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
9
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
10 The reference for Trimmomatic is:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
11
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
12 - Bolger, A.M., Lohse, M., & Usadel, B. (2014). Trimmomatic: A flexible trimmer
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
13 for Illumina Sequence Data. Bioinformatics, btu170.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
14
7
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
15 Controlling the available memory
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
16 ================================
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
17
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
18 The default amount of memory avilable to trimmomatic is set to 8GB.
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
19 To change the default amount of memory you can set the environment variable
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
20 ``_JAVA_OPTIONS`` to ``-Xmx<amount_of_memory_in_GB>G``. The recommended way to
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
21 set this is in the job_conf.xml file. To change the available memory to 6GB, a
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
22 line like the below should be added:
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
23
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
24 ``<env id="_JAVA_OPTIONS">-Xmx6G</env>``
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
25
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
26 This will set the environment variable ``_JAVA_OPTIONS`` to ``-Xmx6G``.
6eeacf19a38e Version 0.36.3: fix the naming of output collections to differentiate btwn paired/unpaired; document the _JAVA_OPTIONS env var (thanks Marius van den Beek).
pjbriggs
parents: 6
diff changeset
27
1
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
28 History
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
29 =======
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
30
16
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
31 ============== ================================================================
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
32 Version Changes
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
33 -------------- ----------------------------------------------------------------
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
34 0.39+galaxy1 - Relocated to the ``tools-iuc`` repository
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
35 0.39 - Update to Trimmomatic 0.39.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
36 0.38.1 - Bug fix: add dependency on ``coreutils`` so that
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
37 ``readlink -e`` is supported across both Linux and MacOS
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
38 platforms.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
39 0.38.0 - Update to Trimmomatic 0.38.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
40 0.36.6 - Added trimlog and log outputs; add support for
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
41 ``fastqillumina`` and ``fastqsolexa`` input types
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
42 0.36.5 - Remove tool_dependencies.xml and always use conda to resolve
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
43 tool dependencies
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
44 0.36.4 - Add option to provide custom adapter sequences for
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
45 ILLUMINACLIP
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
46 - Add options ``minAdapterLength`` and ``keepBothReads`` for
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
47 ILLUMINACLIP in palindrome mode
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
48 0.36.3 - Fix naming of output collections. Instead of all outputs being
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
49 called "Trimmomatic on collection NN" these will now be called
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
50 "Trimmomatic on collection NN: paired" or "Trimmomatic on
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
51 collection NN: unpaired".
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
52 0.36.2 - Support fastqsanger.gz datatype. If fastqsanger.gz is used as
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
53 input the output will also be fastqsanger.gz.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
54 - Use $_JAVA_OPTIONS to customize memory requirements.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
55 0.36.1 - Reimplement to work with bioconda Trimmomatic 0.36 (toolshed
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
56 version is still supported for now).
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
57 0.36.0 - Update to Trimmomatic 0.36.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
58 0.32.4 - Add support for ``AVGQUAL`` and ``MAXINFO`` operations.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
59 0.32.3 - Add support for FASTQ R1/R2 pairs using dataset collections
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
60 (input can be dataset collection, in which case tool also
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
61 outputs dataset collections) and improve order and naming of
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
62 output files.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
63 0.32.2 - Use ``GALAXY_SLOTS`` to set the appropriate number of threads
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
64 to use at runtime (default is 6).
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
65 0.32.1 - Remove ``trimmomatic_adapters.loc.sample`` and hard-code
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
66 adapter files into the XML wrapper.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
67 0.32.0 - Add tool_dependencies.xml to install Trimmomatic 0.32
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
68 automatically and set the environment.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
69 - Update tool versioning to use Trimmomatic version number (i.e.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
70 ``0.32``) with tool iteration appended (i.e. ``.1``).
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
71 0.0.4 - Specify '-threads 6' in <command> section.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
72 0.0.3 - Added MINLEN, LEADING, TRAILING, CROP and HEADCROP options of
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
73 trimmomatic.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
74 0.0.2 - Updated ILLUMINACLIP option to use standard adapter sequences
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
75 (requires the trimmomatic_adapters.loc file; sample version is
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
76 supplied) plus cosmetic updates to wording and help text for
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
77 some options.
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
78 0.0.1 - Initial version
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
79 ============== ================================================================
1
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
80
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
81
6
141bba0e9a77 Uploaded v0.36.2 (adds support for compressed fastq inputs)
pjbriggs
parents: 5
diff changeset
82 Credits
141bba0e9a77 Uploaded v0.36.2 (adds support for compressed fastq inputs)
pjbriggs
parents: 5
diff changeset
83 =======
141bba0e9a77 Uploaded v0.36.2 (adds support for compressed fastq inputs)
pjbriggs
parents: 5
diff changeset
84
16
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
85 This wrapper was originally developed and maintained by Peter Briggs
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
86 (@pjbriggs).
11
59054f086eca Version 0.36.6 (output logs and handle fastqillumina and fastqsolexa inputs)
pjbriggs
parents: 10
diff changeset
87 Peter van Heusden (@pvanheus) and Marius van den Beek (@mvdbeek) contributed
8
415a165d92bb Uploaded v0.36.4.
pjbriggs
parents: 7
diff changeset
88 support for gz compressed FastQ files. Charles Girardot (@cgirardot) and
16
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
89 Jelle Scholtalbers (@scholtalbers) contributed additional options to
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
90 ILLUMINACLIP.
11
59054f086eca Version 0.36.6 (output logs and handle fastqillumina and fastqsolexa inputs)
pjbriggs
parents: 10
diff changeset
91 Matthias Bernt (@bernt-matthias) added log and trimlog output.
14
d94aff5ee623 Version 0.38.1: add coreutils as dependency to fix tool issues with &#39;readlink -e&#39; across platforms.
pjbriggs
parents: 13
diff changeset
92 Nicola Soranzo (@nsoranzo) suggested using coreutils to enable cross-platform
d94aff5ee623 Version 0.38.1: add coreutils as dependency to fix tool issues with &#39;readlink -e&#39; across platforms.
pjbriggs
parents: 13
diff changeset
93 support across Linux and MacOS.
15
32f1f56bd970 Updated for Trimmomatic 0.39 and adds quality score options.
pjbriggs
parents: 14
diff changeset
94 Cristóbal Gallardo (@gallardoalba) updated Trimmomatic up to version 0.39.
16
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
95 Peter Briggs wishes to acknowledge the help from Matthia Bernt
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
96 (@bernt-matthias) with relocating the tool in the IUC tool repository,
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
97 and the IUC for taking on responsibility for the tool.
6
141bba0e9a77 Uploaded v0.36.2 (adds support for compressed fastq inputs)
pjbriggs
parents: 5
diff changeset
98
1
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
99 Developers
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
100 ==========
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
101
16
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
102 The Trimmomatic tool is now maintained as part of the ``tools-iuc`` repository
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
103 on GitHub:
9a38087e3bfd planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic commit ab36e4731731f12cce0e7d7cc3b50ba6a0bab1ef
iuc
parents: 15
diff changeset
104 https://github.com/galaxyproject/tools-iuc/tools/tree/main/trimmomatic
1
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
105
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
106 Licence (MIT)
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
107 =============
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
108
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
109 Permission is hereby granted, free of charge, to any person obtaining a copy
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
110 of this software and associated documentation files (the "Software"), to deal
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
111 in the Software without restriction, including without limitation the rights
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
112 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
113 copies of the Software, and to permit persons to whom the Software is
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
114 furnished to do so, subject to the following conditions:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
115
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
116 The above copyright notice and this permission notice shall be included in
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
117 all copies or substantial portions of the Software.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
118
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
119 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
120 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
121 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
122 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
123 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
124 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
125 THE SOFTWARE.