Mercurial > repos > pjbriggs > trimmomatic
annotate README.rst @ 5:f80107cdc406 draft
Updated to 0.36.1: Reimplement to work with bioconda Trimmomatic 0.36 (toolshed version is still supported for now).
author | pjbriggs |
---|---|
date | Fri, 16 Dec 2016 11:31:55 -0500 |
parents | 14d05f2d511d |
children | 141bba0e9a77 |
rev | line source |
---|---|
1 | 1 Trimmomatic: flexible read trimming tool for Illumina NGS data |
2 ============================================================== | |
3 | |
4 Galaxy tool wrapper for the Trimmomatic program, which provides various functions for | |
5 manipluating Illumina FASTQ files (both single and paired-end). | |
6 | |
7 Trimmomatic has been developed within Bjorn Usadel's group at RWTH Aachen university | |
8 http://www.usadellab.org/cms/index.php?page=trimmomatic | |
9 | |
10 The reference for Trimmomatic is: | |
11 | |
12 - Bolger, A.M., Lohse, M., & Usadel, B. (2014). Trimmomatic: A flexible trimmer | |
13 for Illumina Sequence Data. Bioinformatics, btu170. | |
14 | |
15 Automated installation | |
16 ====================== | |
17 | |
2
a60283899c6d
Version 0.32.2: use GALAXY_SLOTS to set number of threads.
pjbriggs
parents:
1
diff
changeset
|
18 Installation via the Galaxy Tool Shed will take care of installing the tool wrapper |
a60283899c6d
Version 0.32.2: use GALAXY_SLOTS to set number of threads.
pjbriggs
parents:
1
diff
changeset
|
19 and the trimmomatic program and data, and setting the appropriate environment |
a60283899c6d
Version 0.32.2: use GALAXY_SLOTS to set number of threads.
pjbriggs
parents:
1
diff
changeset
|
20 variables. |
1 | 21 |
22 Manual Installation | |
23 =================== | |
24 | |
25 There are two files to install: | |
26 | |
27 - ``trimmomatic.xml`` (the Galaxy tool definition) | |
28 - ``trimmomatic.sh`` (the shell script wrapper) | |
29 | |
30 The suggested location is in a ``tools/trimmomatic/`` folder. You will then | |
31 need to modify the ``tools_conf.xml`` file to tell Galaxy to offer the tool | |
32 by adding the line: | |
33 | |
34 <tool file="trimmomatic/trimmomatic.xml" /> | |
35 | |
4 | 36 You will also need to install trimmomatic 0.36: |
1 | 37 |
4 | 38 - http://www.usadellab.org/cms/uploads/supplementary/Trimmomatic/Trimmomatic-0.36.zip |
1 | 39 |
40 The tool wrapper uses the following environment variables in order to find the | |
41 appropriate files: | |
42 | |
43 - ``TRIMMOMATIC_DIR`` should point to the directory holding the | |
4 | 44 ``trimmomatic-0.36.jar`` file |
1 | 45 - ``TRIMMOMATIC_ADAPTERS_DIR`` should point to the directory holding the adapter |
46 sequence files (used by the ``ILLUMINACLIP`` option). | |
47 | |
48 If you want to run the functional tests, copy the sample test files under | |
49 sample test files under Galaxy's ``test-data/`` directory. Then: | |
50 | |
51 ./run_tests.sh -id trimmomatic | |
52 | |
53 You will need to have set the environment variables above. | |
54 | |
55 History | |
56 ======= | |
57 | |
58 ========== ====================================================================== | |
59 Version Changes | |
60 ---------- ---------------------------------------------------------------------- | |
5
f80107cdc406
Updated to 0.36.1: Reimplement to work with bioconda Trimmomatic 0.36 (toolshed version is still supported for now).
pjbriggs
parents:
4
diff
changeset
|
61 0.36.1 - Reimplement to work with bioconda Trimmomatic 0.36 (toolshed version |
f80107cdc406
Updated to 0.36.1: Reimplement to work with bioconda Trimmomatic 0.36 (toolshed version is still supported for now).
pjbriggs
parents:
4
diff
changeset
|
62 is still supported for now). |
4 | 63 0.36.0 - Update to Trimmomatic 0.36. |
64 0.32.4 - Add support for ``AVGQUAL`` and ``MAXINFO`` operations. | |
3
f8a9a5eaca8a
Updated to version 0.32.3: add support for FASTQ pairs (dataset collections)
pjbriggs
parents:
2
diff
changeset
|
65 0.32.3 - Add support for FASTQ R1/R2 pairs using dataset collections (input |
f8a9a5eaca8a
Updated to version 0.32.3: add support for FASTQ pairs (dataset collections)
pjbriggs
parents:
2
diff
changeset
|
66 can be dataset collection, in which case tool also outputs dataset |
f8a9a5eaca8a
Updated to version 0.32.3: add support for FASTQ pairs (dataset collections)
pjbriggs
parents:
2
diff
changeset
|
67 collections) and improve order and naming of output files. |
2
a60283899c6d
Version 0.32.2: use GALAXY_SLOTS to set number of threads.
pjbriggs
parents:
1
diff
changeset
|
68 0.32.2 - Use ``GALAXY_SLOTS`` to set the appropriate number of threads to use |
a60283899c6d
Version 0.32.2: use GALAXY_SLOTS to set number of threads.
pjbriggs
parents:
1
diff
changeset
|
69 at runtime (default is 6). |
1 | 70 0.32.1 - Remove ``trimmomatic_adapters.loc.sample`` and hard-code adapter files |
71 into the XML wrapper. | |
72 0.32.0 - Add tool_dependencies.xml to install Trimmomatic 0.32 automatically and | |
73 set the environment. | |
74 - Update tool versioning to use Trimmomatic version number (i.e. ``0.32``) | |
75 with tool iteration appended (i.e. ``.1``). | |
76 0.0.4 - Specify '-threads 6' in <command> section. | |
77 0.0.3 - Added MINLEN, LEADING, TRAILING, CROP and HEADCROP options of trimmomatic. | |
78 0.0.2 - Updated ILLUMINACLIP option to use standard adapter sequences (requires | |
79 the trimmomatic_adapters.loc file; sample version is supplied) plus | |
80 cosmetic updates to wording and help text for some options. | |
81 0.0.1 - Initial version | |
82 ========== ====================================================================== | |
83 | |
84 | |
85 Developers | |
86 ========== | |
87 | |
88 This tool is developed on the following GitHub repository: | |
89 https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/trimmomatic | |
90 | |
91 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball I use | |
92 the ``package_trimmomatic.sh`` script. | |
93 | |
94 | |
95 Licence (MIT) | |
96 ============= | |
97 | |
98 Permission is hereby granted, free of charge, to any person obtaining a copy | |
99 of this software and associated documentation files (the "Software"), to deal | |
100 in the Software without restriction, including without limitation the rights | |
101 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
102 copies of the Software, and to permit persons to whom the Software is | |
103 furnished to do so, subject to the following conditions: | |
104 | |
105 The above copyright notice and this permission notice shall be included in | |
106 all copies or substantial portions of the Software. | |
107 | |
108 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
109 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
110 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
111 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
112 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
113 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
114 THE SOFTWARE. |