annotate tools/seq_composition/seq_composition.xml @ 1:c0eb0e5792f3 draft

v0.0.2; internal changes for packaging
author peterjc
date Wed, 13 May 2015 10:49:27 -0400
parents 087a226e501e
children 4283011f4be2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
c0eb0e5792f3 v0.0.2; internal changes for packaging
peterjc
parents: 0
diff changeset
1 <tool id="seq_composition" name="Sequence composition" version="0.0.2">
0
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
2 <description>Count bases or amino-acids</description>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
3 <requirements>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
4 <requirement type="package" version="1.64">biopython</requirement>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
5 <requirement type="python-module">Bio</requirement>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
6 </requirements>
1
c0eb0e5792f3 v0.0.2; internal changes for packaging
peterjc
parents: 0
diff changeset
7 <stdio>
c0eb0e5792f3 v0.0.2; internal changes for packaging
peterjc
parents: 0
diff changeset
8 <!-- Anything other than zero is an error -->
c0eb0e5792f3 v0.0.2; internal changes for packaging
peterjc
parents: 0
diff changeset
9 <exit_code range="1:" />
c0eb0e5792f3 v0.0.2; internal changes for packaging
peterjc
parents: 0
diff changeset
10 <exit_code range=":-1" />
c0eb0e5792f3 v0.0.2; internal changes for packaging
peterjc
parents: 0
diff changeset
11 </stdio>
0
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
12 <version_command interpreter="python">seq_composition.py --version</version_command>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
13 <command interpreter="python">
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
14 seq_composition.py -o "$output_file"
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
15 ##For loop over inputs
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
16 #for i in $input_file
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
17 --$i.ext "${i}"
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
18 #end for
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
19 </command>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
20 <inputs>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
21 <param name="input_file" type="data" format="fasta,fastq,sff" multiple="true" label="Sequence file" help="FASTA, FASTQ, or SFF format." />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
22 </inputs>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
23 <outputs>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
24 <data name="output_file" format="tabular" label="Sequence composition ${on_string}"/>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
25 </outputs>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
26 <tests>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
27 <test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
28 <param name="input_file" value="four_human_proteins.fasta" ftype="fasta" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
29 <output name="output_file" file="four_human_proteins.seq_composition.tabular" ftype="tabular" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
30 </test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
31 <test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
32 <param name="input_file" value="ecoli.fastq" ftype="fastq" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
33 <output name="output_file" file="ecoli.seq_composition.tabular" ftype="tabular" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
34 </test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
35 <test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
36 <param name="input_file" value="ecoli.fastq" ftype="fastqsanger" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
37 <output name="output_file" file="ecoli.seq_composition.tabular" ftype="tabular" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
38 </test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
39 <test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
40 <param name="input_file" value="MID4_GLZRM4E04_rnd30_frclip.sff" ftype="sff" />
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
41 <output name="output_file" file="MID4_GLZRM4E04_rnd30_frclip.seq_composition.tabular" ftype="tabular"/>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
42 </test>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
43 </tests>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
44 <help>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
45 **What it does**
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
46
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
47 Takes input files of sequences (typically FASTA or FASTQ, but also
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
48 Standard Flowgram Format (SFF) is supported), counts all the letters
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
49 in each sequence, and returns a summary table of their counts and
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
50 percentages.
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
51
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
52 **Citation**
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
53
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
54 This tool uses Biopython, so if you use this Galaxy tool in work leading to a
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
55 scientific publication please cite the following paper:
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
56
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
57 Cock et al (2009). Biopython: freely available Python tools for computational
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
58 molecular biology and bioinformatics. Bioinformatics 25(11) 1422-3.
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
59 http://dx.doi.org/10.1093/bioinformatics/btp163 pmid:19304878.
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
60
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
61 This tool is available to install into other Galaxy Instances via the Galaxy
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
62 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/seq_composition
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
63 </help>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
64 <citations>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
65 <citation type="doi">10.1093/bioinformatics/btp163</citation>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
66 </citations>
087a226e501e Uploaded v0.0.1 (with embedded citation)
peterjc
parents:
diff changeset
67 </tool>