comparison cherry_pick_fasta.xml @ 0:726b1e233a08 draft

planemo upload for repository https://bitbucket.org/drosofff/gedtools/
author drosofff
date Mon, 08 Jun 2015 18:55:07 -0400
parents
children 371b0e95dca5
comparison
equal deleted inserted replaced
-1:000000000000 0:726b1e233a08
1 <tool id="cherry_pick_fasta" name="Pick Fasta sequences" version="0.9.0">
2 <description>with header satisfying a query string</description>
3 <command interpreter="python">cherry_pick-fasta.py
4 --input "$input"
5 --query-string $query
6 --output $output
7 </command>
8
9 <inputs>
10 <param name="query" type="text" size="30" value="" label="Select sequences with this string in their header" help="exemple:'gi|40557596'">
11 <sanitizer>
12 <valid initial="string.printable">
13 <remove value="&quot;"/>
14 <remove value="\"/>
15 </valid>
16 <mapping initial="none">
17 <add source="&quot;" target="\&quot;"/>
18 <add source="\" target="\\"/>
19 </mapping>
20 </sanitizer>
21 </param>
22 <param format="fasta" label="Source file" name="input" type="data" />
23 </inputs>
24 <outputs>
25 <data name="output" format="fasta" label="${tool.name} on ${input.value} with query: ${query.value}" />
26 </outputs>
27 <tests>
28 <test>
29 <param ftype="fasta" name="input" value="input.fa" />
30 <param name="query" value="AAR88092.1" />
31 <output name="output" ftype="fasta" file="output.fa" />
32 </test>
33 </tests>
34 <help>
35 **What it does**
36
37 This tool retrieves nucleotide/peptide sequences from a fasta file whose headers match a given query string
38
39 It is Copyright © 2015 `CNRS and University Pierre et Marie Curie`_ and is released under the `MIT license`_.
40
41 .. _MIT license: http://opensource.org/licenses/MIT
42
43 </help>
44 <citations>
45 <citation></citation>
46 </citations>
47 </tool>