Mercurial > repos > iuc > vsearch
annotate alignment.xml @ 4:576963db5f1b draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 89e3a62dd6cbc8bcec84d08c1710bfb4e7f5938f
author | iuc |
---|---|
date | Fri, 20 Jan 2017 03:39:22 -0500 |
parents | 4258854759ba |
children |
rev | line source |
---|---|
3
4258854759ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 29f6e6424a37947adbe1eba92f0e7d3c83efc042-dirty
iuc
parents:
2
diff
changeset
|
1 <tool id="vsearch_alignment" name="VSearch alignment" version="@VERSION@.0"> |
0 | 2 <description></description> |
3 <macros> | |
4 <import>vsearch_macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <expand macro="version_command" /> | |
9 <command> | |
10 <![CDATA[ | |
11 vsearch | |
12 @GENERAL@ | |
13 $acceptall | |
2
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
14 --id "${id}" |
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
15 --iddef "${iddef}" |
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
16 --allpairs_global "${infile}" |
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
17 --alnout "${outfile}" |
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
18 #if str( $query_cov ): |
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
19 --query_cov "${query_cov}" |
f29e21388219
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 64c1c4c664c6a131d897f574dc849f5668fa97d2
iuc
parents:
0
diff
changeset
|
20 #end if |
0 | 21 @USERFIELDS@ |
22 ]]> | |
23 </command> | |
24 <inputs> | |
25 <param name="infile" type="data" format="fasta" label="Select your FASTA file" help="(--allpairs_global)" /> | |
26 <expand macro="id_and_iddef" /> | |
27 <param name="acceptall" type="boolean" truevalue="--acceptall" falsevalue="" checked="False" | |
28 label="Output all pairwise alignments" help="This option overrides all other accept/reject options including identity. (--acceptall)"/> | |
29 <param name="query_cov" type="float" value="" optional="True" label="Reject if fraction of query seq. aligned lower than this value" | |
30 help="(--query_cov)"/> | |
31 <expand macro="userfields" /> | |
32 </inputs> | |
33 <outputs> | |
34 <data name="outfile" format="fasta" label="${tool.name} on ${on_string}" /> | |
4
576963db5f1b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 89e3a62dd6cbc8bcec84d08c1710bfb4e7f5938f
iuc
parents:
3
diff
changeset
|
35 <expand macro="userfields_output" /> |
0 | 36 </outputs> |
37 <tests> | |
38 <test> | |
39 <param name="infile" value="Rfam_11_0.repr.fasta.bz2" ftype="fasta" /> | |
40 <param name="acceptall" value=""/> | |
41 <param name="id" value="0.97"/> | |
42 <param name="query_cov" value="0.95"/> | |
43 <param name="userfields" value="query,target"/> | |
44 <output name="outfile" file="alignment_result1.fasta" lines_diff="4" ftype="fasta" /> | |
45 </test> | |
46 </tests> | |
47 <help> | |
48 <![CDATA[ | |
49 **What it does** | |
50 | |
51 Pairwise alignments of all sequences. | |
52 | |
53 | |
54 Alignment options (most searching options also apply) | |
55 --allpairs_global FILENAME perform global alignment of all sequence pairs | |
56 --alnout FILENAME filename for human-readable alignment output | |
57 --acceptall output all pairwise alignments | |
58 | |
59 @EXTERNAL_DOCUMENTATION@ | |
60 | |
61 | |
62 ]]> | |
63 </help> | |
64 <expand macro="citations" /> | |
65 </tool> |