annotate tools/seq_composition/seq_composition.xml @ 3:7a26bb458806 draft

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