annotate tools/filters/seq_select_by_id.rst @ 3:19e26966ed3e draft

Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file. No functional changes.
author peterjc
date Mon, 29 Jul 2013 09:13:13 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
1 Galaxy tool to select FASTA, QUAL, FASTQ or SFF sequences by ID
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
2 ===============================================================
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
3
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
4 This tool is copyright 2011-2013 by Peter Cock, The James Hutton Institute
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
5 (formerly SCRI, Scottish Crop Research Institute), UK. All rights reserved.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
6 See the licence text below.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
7
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
8 This tool is a short Python script (using Biopython library functions) to extract
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
9 sequences from a FASTA, QUAL, FASTQ, or SFF file based on the list of IDs given
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
10 by a column of a tabular file. The output order follows that of the tabular file,
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
11 and if there are duplicates in the tabular file, there will be duplicates in the
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
12 output sequence file.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
13
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
14 This tool is available from the Galaxy Tool Shed at:
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
15
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
16 * http://toolshed.g2.bx.psu.edu/view/peterjc/seq_select_by_id
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
17
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
18 See also the sister tools to filter sequence files according to IDs from column(s)
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
19 of a tabular file (where the output order follows the sequence file, and any
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
20 duplicate IDs are ignored) and rename sequences:
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
21
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
22 * http://toolshed.g2.bx.psu.edu/view/peterjc/seq_filter_by_id
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
23 * http://toolshed.g2.bx.psu.edu/view/peterjc/seq_rename
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
24
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
25
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
26 Automated Installation
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
27 ======================
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
28
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
29 This should be straightforward using the Galaxy Tool Shed, which should be
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
30 able to automatically install the dependency on Biopython, and then install
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
31 this tool and run its unit tests.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
32
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
33
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
34 Manual Installation
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
35 ===================
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
36
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
37 There are just two files to install to use this tool from within Galaxy:
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
38
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
39 * seq_select_by_id.py (the Python script)
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
40 * seq_select_by_id.xml (the Galaxy tool definition)
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
41
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
42 The suggested location is in the Galaxy folder tools/filters next to the tool
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
43 for calling sff_extract.py for converting SFF to FASTQ or FASTA + QUAL.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
44
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
45 You will also need to modify the tools_conf.xml file to tell Galaxy to offer the
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
46 tool. One suggested location is in the filters section. Simply add the line::
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
47
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
48 <tool file="filters/seq_select_by_id.xml" />
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
49
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
50 If you wish to run the unit tests, also add this to tools_conf.xml.sample
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
51 and move/copy the test-data files under Galaxy's test-data folder. Then::
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
52
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
53 $ ./run_functional_tests.sh -id seq_select_by_id
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
54
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
55 You will also need to install Biopython 1.54 or later. That's it.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
56
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
57
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
58 History
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
59 =======
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
60
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
61 ======= ======================================================================
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
62 Version Changes
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
63 ------- ----------------------------------------------------------------------
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
64 v0.0.1 - Initial version.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
65 v0.0.3 - Ignore blank lines in input.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
66 v0.0.4 - Record script version when run from Galaxy.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
67 - Basic unit test included.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
68 v0.0.5 - Check for errors using Python script's return code.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
69 v0.0.6 - Link to Tool Shed added to help text and this documentation.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
70 - Automatic installation of Biopython dependency.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
71 - Use reStructuredText for this README file.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
72 - Adopt standard MIT License.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
73 ======= ======================================================================
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
74
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
75
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
76 Developers
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
77 ==========
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
78
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
79 This script and related tools are being developed on the following hg branch:
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
80 http://bitbucket.org/peterjc/galaxy-central/src/tools
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
81
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
82 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball use
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
83 the following command from the Galaxy root folder::
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
84
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
85 $ tar -czf seq_select_by_id.tar.gz tools/filters/seq_select_by_id.* tools/filters/repository_dependencies.xml test-data/k12_ten_proteins.fasta test-data/k12_hypothetical.fasta test-data/k12_hypothetical.tabular
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
86
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
87 Check this worked::
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
88
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
89 $ tar -tzf seq_select_by_id.tar.gz
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
90 tools/filters/seq_select_by_id.py
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
91 tools/filters/seq_select_by_id.rst
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
92 tools/filter/seq_select_by_id.xml
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
93 tools/filters/repository_dependencies.xml
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
94 test-data/k12_ten_proteins.fasta
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
95 test-data/k12_hypothetical.fasta
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
96 test-data/k12_hypothetical.tabular
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
97
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
98
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
99 Licence (MIT)
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
100 =============
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
101
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
102 Permission is hereby granted, free of charge, to any person obtaining a copy
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
103 of this software and associated documentation files (the "Software"), to deal
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
104 in the Software without restriction, including without limitation the rights
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
105 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
106 copies of the Software, and to permit persons to whom the Software is
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
107 furnished to do so, subject to the following conditions:
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
108
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
109 The above copyright notice and this permission notice shall be included in
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
110 all copies or substantial portions of the Software.
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
111
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
112 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
113 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
114 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
115 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
116 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
117 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19e26966ed3e Uploaded v0.0.6, handles Biopython dependency via the ToolShed, adopted MIT license, using reStructuredTest for the README file.
peterjc
parents:
diff changeset
118 THE SOFTWARE.