comparison tools/filters/seq_select_by_id.xml @ 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 28d52478ace9
children
comparison
equal deleted inserted replaced
2:28d52478ace9 3:19e26966ed3e
1 <tool id="seq_select_by_id" name="Select sequences by ID" version="0.0.4"> 1 <tool id="seq_select_by_id" name="Select sequences by ID" version="0.0.6">
2 <description>from a tabular file</description> 2 <description>from a tabular file</description>
3 <version_command interpreter="python">seq_select_by_id.py --version</version_command> 3 <version_command interpreter="python">seq_select_by_id.py --version</version_command>
4 <command interpreter="python"> 4 <command interpreter="python">
5 seq_select_by_id.py $input_tabular $column $input_file $input_file.ext $output_file 5 seq_select_by_id.py $input_tabular $column $input_file $input_file.ext $output_file
6 </command> 6 </command>
7 <stdio>
8 <!-- Anything other than zero is an error -->
9 <exit_code range="1:" />
10 <exit_code range=":-1" />
11 </stdio>
7 <inputs> 12 <inputs>
8 <param name="input_file" type="data" format="fasta,qual,fastq,sff" label="Sequence file to select from" help="FASTA, QUAL, FASTQ, or SFF format." /> 13 <param name="input_file" type="data" format="fasta,qual,fastq,sff" label="Sequence file to select from" help="FASTA, QUAL, FASTQ, or SFF format." />
9 <param name="input_tabular" type="data" format="tabular" label="Tabular file containing sequence identifiers"/> 14 <param name="input_tabular" type="data" format="tabular" label="Tabular file containing sequence identifiers"/>
10 <param name="column" type="data_column" data_ref="input_tabular" multiple="False" numerical="False" label="Column containing sequence identifiers"/> 15 <param name="column" type="data_column" data_ref="input_tabular" multiple="False" numerical="False" label="Column containing sequence identifiers"/>
11 </inputs> 16 </inputs>
52 57
53 Cock et al 2009. Biopython: freely available Python tools for computational 58 Cock et al 2009. Biopython: freely available Python tools for computational
54 molecular biology and bioinformatics. Bioinformatics 25(11) 1422-3. 59 molecular biology and bioinformatics. Bioinformatics 25(11) 1422-3.
55 http://dx.doi.org/10.1093/bioinformatics/btp163 pmid:19304878. 60 http://dx.doi.org/10.1093/bioinformatics/btp163 pmid:19304878.
56 61
62 This tool is available to install into other Galaxy Instances via the Galaxy
63 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/seq_select_by_id
57 </help> 64 </help>
58 </tool> 65 </tool>