annotate alignment.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_alignment" name="VSearch alignment" 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 $acceptall
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
14 --id $id
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
15 --iddef $iddef
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
16 --allpairs_global "$infile"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
17 --alnout $outfile
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
18 --query_cov $query_cov
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
19 @USERFIELDS@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
20 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
21 </command>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
22 <inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
23 <param name="infile" type="data" format="fasta" label="Select your FASTA file" help="(--allpairs_global)" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
24 <expand macro="id_and_iddef" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
25 <param name="acceptall" type="boolean" truevalue="--acceptall" falsevalue="" checked="False"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
26 label="Output all pairwise alignments" help="This option overrides all other accept/reject options including identity. (--acceptall)"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
27 <param name="query_cov" type="float" value="" optional="True" label="Reject if fraction of query seq. aligned lower than this value"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
28 help="(--query_cov)"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
29 <expand macro="userfields" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
30 </inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
31 <outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
32 <data name="outfile" format="fasta" label="${tool.name} on ${on_string}" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
33 </outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
34 <tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
35 <test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
36 <param name="infile" value="Rfam_11_0.repr.fasta.bz2" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
37 <param name="acceptall" value=""/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
38 <param name="id" value="0.97"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
39 <param name="query_cov" value="0.95"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
40 <param name="userfields" value="query,target"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
41 <output name="outfile" file="alignment_result1.fasta" lines_diff="4" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
42 </test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
43 </tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
44 <help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
45 <![CDATA[
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
46 **What it does**
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
47
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
48 Pairwise alignments of all 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 Alignment options (most searching options also apply)
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
52 --allpairs_global FILENAME perform global alignment of all sequence pairs
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
53 --alnout FILENAME filename for human-readable alignment output
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
54 --acceptall output all pairwise alignments
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
55
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
56 @EXTERNAL_DOCUMENTATION@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
57
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
58 -------
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
59
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
60 @REFERENCES@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
61
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
62
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
63 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
64 </help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
65 <expand macro="citations" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
66 </tool>