annotate shuffling.xml @ 2:f29e21388219 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
author iuc
date Thu, 17 Dec 2015 12:53:39 -0500
parents fae6527990af
children 4258854759ba
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
1 <tool id="vsearch_shuffling" name="VSearch shuffling" version="@VERSION@.1">
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
2 <description></description>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
4 <import>vsearch_macros.xml</import>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
8 <expand macro="version_command" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
9 <command>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
10 <![CDATA[
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
11 vsearch
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
12 @GENERAL@
2
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
13 --output "$outfile"
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
14 --seed "$seed"
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
15 --shuffle "$infile"
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
16 #if str( $topn ):
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
17 --topn "$topn"
f29e21388219 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents: 0
diff changeset
18 #end if
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
19 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
20 </command>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
21 <inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
22 <param name="infile" type="data" format="fasta" label="Select your FASTA file" help="(--shuffle)" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
23 <param name="seed" type="integer" value="0" label="Seed"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
24 help="Zero to use random data source. (--seed)"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
25 <expand macro="topn" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
26 </inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
27 <outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
28 <data name="outfile" format="fasta" label="${tool.name} on ${on_string}" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
29 </outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
30 <tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
31 <test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
32 <param name="infile" value="db.fasta" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
33 <param name="seed" value="1"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
34 <param name="topn" value="5"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
35 <output name="outfile" file="shuffling_result1.fasta" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
36 </test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
37 </tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
38 <help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
39 <![CDATA[
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
40 **What it does**
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
41
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
42 Sequence shuffling to obtain new random sequences.
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
43
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
44 Shuffling options
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
45 --output FILENAME output to specified FASTA file
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
46 --seed INT seed for PRNG, zero to use random data source (0)
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
47 --shuffle FILENAME shuffle order of sequences pseudo-randomly
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
48 --topn INT output just first n sequences
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
49
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
50
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
51 @EXTERNAL_DOCUMENTATION@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
52
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
53
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
54 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
55 </help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
56 <expand macro="citations" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
57 </tool>