annotate shuffling.xml @ 0:fae6527990af draft

Imported from capsule None
author iuc
date Thu, 21 May 2015 03:58:09 -0400
parents
children f29e21388219
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
1 <tool id="vsearch_shuffling" name="VSearch shuffling" version="@VERSION@.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@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
13 --output $outfile
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
14 --seed $seed
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
15 --shuffle $infile
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
16 --topn $topn
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
17 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
18 </command>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
19 <inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
20 <param name="infile" type="data" format="fasta" label="Select your FASTA file" help="(--shuffle)" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
21 <param name="seed" type="integer" value="0" label="Seed"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
22 help="Zero to use random data source. (--seed)"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
23 <expand macro="topn" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
24 </inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
25 <outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
26 <data name="outfile" format="fasta" label="${tool.name} on ${on_string}" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
27 </outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
28 <tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
29 <test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
30 <param name="infile" value="db.fasta" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
31 <param name="seed" value="1"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
32 <param name="topn" value="5"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
33 <output name="outfile" file="shuffling_result1.fasta" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
34 </test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
35 </tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
36 <help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
37 <![CDATA[
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
38 **What it does**
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
39
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
40 Sequence shuffling to obtain new random sequences.
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
41
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
42 Shuffling options
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
43 --output FILENAME output to specified FASTA file
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
44 --seed INT seed for PRNG, zero to use random data source (0)
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
45 --shuffle FILENAME shuffle order of sequences pseudo-randomly
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
46 --topn INT output just first n sequences
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
47
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
48
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
49 @EXTERNAL_DOCUMENTATION@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
50
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
51 -------
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
52
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
53 @REFERENCES@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
54
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
55
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
56 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
57 </help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
58 <expand macro="citations" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
59 </tool>