annotate README.rst @ 0:2e96bf82b463 draft

Uploaded first attempt at Tool Shed package
author peterjc
date Mon, 30 Mar 2015 11:07:48 -0400
parents
children 8e86daf42b9c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
1 Introduction
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
2 ============
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
3
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
4 Galaxy is a web-based platform for biological data analysis, supporting
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
5 extension with additional tools (often wrappers for existing command line
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
6 tools) and datatypes. See http://www.galaxyproject.org/ and the public
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
7 server at http://usegalaxy.org for an example.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
8
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
9 The NCBI BLAST suite is a widely used set of tools for biological sequence
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
10 comparison. It is available as standalone binaries for use at the command
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
11 line, and via the NCBI website for smaller searches. For more details see
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
12 http://blast.ncbi.nlm.nih.gov/Blast.cgi
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
13
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
14 This is an example workflow using the Galaxy wrappers for NCBI BLAST+,
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
15 see https://github.com/peterjc/galaxy_blast
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
16
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
17 Galaxy workflow for counting species of top BLAST hits
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
18 ======================================================
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
19
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
20 This Galaxy workflow (file ``blast_top_hit_species.ga``) is intended for an
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
21 initial assessment of a transcriptome assembly to give a crude indication of
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
22 any major contaimination present based on the species of the top BLAST hit
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
23 of 1000 representative sequences.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
24
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
25 .. image:: https://raw.githubusercontent.com/peterjc/galaxy_blast/master/workflows/blast_top_hit_species/blast_top_hit_species.png
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
26
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
27 In words, the workflow proceeds as follows:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
28
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
29 1. Upload/import your transcriptome assembly or any nucleotide FASTA file.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
30 2. Samples 1000 representative sequences, selected uniformly/evenly though
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
31 the file.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
32 3. Convert the sampled FASTA file into a three column tabular file.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
33 4. Runs NCBI BLASTX of the sampled FASTA file against the latest NCBI ``nr``
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
34 database (assuming this is already available setup on your local Galaxy
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
35 under the alias ``nr``), requesting tabular output including the taxonomy
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
36 fields, and at most one matching target sequence.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
37 5. Remove any duplicate alignments (multiple HSPs for the same match).
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
38 6. Combine the filtered BLAST output with the tabular version of the 1000
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
39 sequences to give a new tabular file with exactly 1000 lines, adding
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
40 ``None`` for sequences missing a BLAST hit.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
41 7. Count the BLAST species names in this file.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
42 8. Sort the counts.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
43
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
44 Finally we would suggest visualising the sorted tally table as a Pie Chart.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
45
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
46
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
47 Sample Data
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
48 ===========
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
49
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
50 As an example, you can upload the transcriptome assembly of the nematode
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
51 *Nacobbus abberans* from Eves van den Akker *et al.* (2015),
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
52 http://dx.doi.org/10.1093/gbe/evu171 using this URL:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
53
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
54 http://nematode.net/Data/nacobbus_aberrans_transcript_assembly/N.abberans_reference_no_contam.zip
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
55
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
56 Running this workflow with a copy of the NCBI non-redundant ``nr`` database
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
57 from 16 Oct 2014 (which did **not** contain this *N. abberans* dataset) gave
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
58 the following results - note 609 out of the 1000 sequences gave no BLAST hit.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
59
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
60 ===== ==================
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
61 Count Subject Blast Name
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
62 ----- ------------------
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
63 609 None
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
64 244 nematodes
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
65 30 ascomycetes
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
66 27 eukaryotes
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
67 8 basidiomycetes
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
68 6 aphids
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
69 5 eudicots
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
70 5 flies
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
71 ... ...
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
72 ===== ==================
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
73
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
74 As you might guess from the filename ``N.abberans_reference_no_contam.fasta``,
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
75 this transcriptome assembly has already had obvious contamination removed.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
76
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
77 At the time of writing, Galaxy's visualizations could not be included in
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
78 a workflow. You can generate a pie chart from the final count file using
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
79 the counts (c1) and labels (c2), like this:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
80
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
81 .. image:: https://raw.githubusercontent.com/peterjc/galaxy_blast/master/workflows/blast_top_hit_species/N_abberans_piechart_mouseover.png
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
82
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
83 Note the nematode count in this image was shown as a mouse-over effect.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
84
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
85
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
86 Availability
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
87 ============
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
88
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
89 This workflow is available to download and/or install from the main Galaxy Tool Shed:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
90
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
91 http://toolshed.g2.bx.psu.edu/view/peterjc/blast_top_hit_species
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
92
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
93 Test releases (which should not normally be used) are on the Test Tool Shed:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
94
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
95 http://testtoolshed.g2.bx.psu.edu/view/peterjc/blast_top_hit_species
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
96
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
97 Development is being done on github here:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
98
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
99 https://github.com/peterjc/galaxy_blast/tree/master/workflows/blast_top_hit_species
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
100
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
101
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
102 Citation
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
103 ========
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
104
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
105 Please cite the following paper (currently available as a preprint):
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
106
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
107 NCBI BLAST+ integrated into Galaxy.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
108 P.J.A. Cock, J.M. Chilton, B. Gruening, J.E. Johnson, N. Soranzo
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
109 bioRxiv DOI: http://dx.doi.org/10.1101/014043 (preprint)
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
110
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
111 You should also cite Galaxy, and the NCBI BLAST+ tools:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
112
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
113 BLAST+: architecture and applications.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
114 C. Camacho et al. BMC Bioinformatics 2009, 10:421.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
115 DOI: http://dx.doi.org/10.1186/1471-2105-10-421
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
116
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
117
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
118 Automated Installation
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
119 ======================
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
120
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
121 Installation via the Galaxy Tool Shed should take care of the dependencies
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
122 on Galaxy tools including the NCBI BLAST+ wrappers and associated binaries.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
123
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
124 However, this workflow requires a current version of the NCBI nr protein
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
125 BLAST database to be listed in ``blastdb_p.loc`` with the key ``nr`` (lower
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
126 case).
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
127
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
128
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
129 History
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
130 =======
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
131
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
132 ======= ======================================================================
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
133 Version Changes
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
134 ------- ----------------------------------------------------------------------
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
135 v0.1.0 - Initial Tool Shed release, targetting NCBI BLAST+ 2.2.29
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
136 ======= ======================================================================
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
137
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
138
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
139 Developers
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
140 ==========
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
141
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
142 This workflow is under source code control here:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
143
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
144 https://github.com/peterjc/galaxy_blast/tree/master/workflows/blast_top_hit_species
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
145
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
146 To prepare the tar-ball for uploading to the Tool Shed, I use this:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
147
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
148 $ tar -cf blast_top_hit_species.tar.gz README.rst repository_dependencies.xml blast_top_hit_species.ga blast_top_hit_species.png N_abberans_piechart_mouseover.png
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
149
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
150 Check this,
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
151
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
152 $ tar -tzf blast_top_hit_species.tar.gz
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
153 README.rst
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
154 repository_dependencies.xml
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
155 blast_top_hit_species.ga
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
156 blast_top_hit_species.png
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
157 N_abberans_piechart_mouseover.png
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
158
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
159
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
160 Licence (MIT)
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
161 =============
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
162
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
163 Permission is hereby granted, free of charge, to any person obtaining a copy
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
164 of this software and associated documentation files (the "Software"), to deal
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
165 in the Software without restriction, including without limitation the rights
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
166 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
167 copies of the Software, and to permit persons to whom the Software is
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
168 furnished to do so, subject to the following conditions:
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
169
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
170 The above copyright notice and this permission notice shall be included in
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
171 all copies or substantial portions of the Software.
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
172
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
173 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
174 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
175 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
176 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
177 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
178 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2e96bf82b463 Uploaded first attempt at Tool Shed package
peterjc
parents:
diff changeset
179 THE SOFTWARE.