annotate README.rst @ 1:2bd7cdbb6228 draft

Add README and citation tags.
author pjbriggs
date Tue, 09 Dec 2014 09:41:33 -0500
parents
children a60283899c6d
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
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
15 Automated installation
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
16 ======================
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
17
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
18 Installation via the Galaxy Tool Shed will take of installing the tool wrapper and
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
19 the trimmomatic program and data, and setting the appropriate environment variables.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
20
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
21 Manual Installation
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
22 ===================
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
23
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
24 There are two files to install:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
25
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
26 - ``trimmomatic.xml`` (the Galaxy tool definition)
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
27 - ``trimmomatic.sh`` (the shell script wrapper)
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
28
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
29 The suggested location is in a ``tools/trimmomatic/`` folder. You will then
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
30 need to modify the ``tools_conf.xml`` file to tell Galaxy to offer the tool
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
31 by adding the line:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
32
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
33 <tool file="trimmomatic/trimmomatic.xml" />
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
34
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
35 You will also need to install trimmomatic 0.32:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
36
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
37 - http://www.usadellab.org/cms/uploads/supplementary/Trimmomatic/Trimmomatic-0.32.zip
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
38
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
39 The tool wrapper uses the following environment variables in order to find the
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
40 appropriate files:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
41
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
42 - ``TRIMMOMATIC_DIR`` should point to the directory holding the
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
43 ``trimmomatic-0.32.jar`` file
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
44 - ``TRIMMOMATIC_ADAPTERS_DIR`` should point to the directory holding the adapter
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
45 sequence files (used by the ``ILLUMINACLIP`` option).
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
46
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
47 If you want to run the functional tests, copy the sample test files under
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
48 sample test files under Galaxy's ``test-data/`` directory. Then:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
49
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
50 ./run_tests.sh -id trimmomatic
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
51
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
52 You will need to have set the environment variables above.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
53
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
54 History
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
55 =======
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
56
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
57 ========== ======================================================================
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
58 Version Changes
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
59 ---------- ----------------------------------------------------------------------
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
60 0.32.1 - Remove ``trimmomatic_adapters.loc.sample`` and hard-code adapter files
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
61 into the XML wrapper.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
62 0.32.0 - Add tool_dependencies.xml to install Trimmomatic 0.32 automatically and
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
63 set the environment.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
64 - Update tool versioning to use Trimmomatic version number (i.e. ``0.32``)
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
65 with tool iteration appended (i.e. ``.1``).
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
66 0.0.4 - Specify '-threads 6' in <command> section.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
67 0.0.3 - Added MINLEN, LEADING, TRAILING, CROP and HEADCROP options of trimmomatic.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
68 0.0.2 - Updated ILLUMINACLIP option to use standard adapter sequences (requires
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
69 the trimmomatic_adapters.loc file; sample version is supplied) plus
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
70 cosmetic updates to wording and help text for some options.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
71 0.0.1 - Initial version
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
72 ========== ======================================================================
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
73
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
74
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
75 Developers
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
76 ==========
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
77
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
78 This tool is developed on the following GitHub repository:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
79 https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/trimmomatic
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
80
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
81 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball I use
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
82 the ``package_trimmomatic.sh`` script.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
83
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
84
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
85 Licence (MIT)
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
86 =============
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
87
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
88 Permission is hereby granted, free of charge, to any person obtaining a copy
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
89 of this software and associated documentation files (the "Software"), to deal
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
90 in the Software without restriction, including without limitation the rights
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
91 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
92 copies of the Software, and to permit persons to whom the Software is
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
93 furnished to do so, subject to the following conditions:
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
94
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
95 The above copyright notice and this permission notice shall be included in
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
96 all copies or substantial portions of the Software.
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
97
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
98 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
99 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
100 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
101 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
102 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2bd7cdbb6228 Add README and citation tags.
pjbriggs
parents:
diff changeset
103 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
104 THE SOFTWARE.