Mercurial > repos > iuc > hmmer_alimask
annotate alimask.xml @ 2:ebd48eca97bc draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit a1a31824fc24d5e652c263b998b7f2363cbd7610
author | iuc |
---|---|
date | Wed, 04 Apr 2018 13:59:34 -0400 |
parents | a20b2c7c5eee |
children | 819d044451ed |
rev | line source |
---|---|
0
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
2 <tool id="hmmer_alimask" name="alimask" version="@WRAPPER_VERSION@.0"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
3 <description>append modelmask line to a multiple sequence alignments</description> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
4 <macros> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
6 </macros> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
8 <expand macro="stdio"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
9 <command><![CDATA[ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
10 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
11 alimask |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
12 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
13 #if $range_type.range_type_select == "model": |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
14 #set range = ','.join( [ "%s-%s" % (str($range.modelrangestart), str($range.modelrangeend)) for $range in $range_type.modelranges]) |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
15 --modelrange $range |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
16 #else |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
17 #set range = ','.join( [ "%s-%s" % (str($range.alirangestart), str($range.alirangeend)) for $range in $range_type.aliranges]) |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
18 --alirange $range |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
19 #end if |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
20 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
21 @FORMAT_SELECTOR@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
22 @MCSS@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
23 @ARSWS@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
24 @SEED@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
25 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
26 $msafile |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
27 $output |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
28 ]]></command> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
29 <inputs> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
30 <expand macro="input_msa" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
31 <conditional name="range_type"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
32 <param name="range_type_select" type="select" |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
33 label="Input range coordinate basis"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
34 <option value="model">Range in model coordinates</option> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
35 <option value="ali">Range in alignment coordinates</option> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
36 </param> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
37 <when value="model"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
38 <repeat min="1" name="modelranges" title="Model Ranges"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
39 <param label="Model Range Start" name="modelrangestart" type="integer" value="10" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
40 <param label="Model Range End" name="modelrangeend" type="integer" value="20" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
41 </repeat> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
42 </when> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
43 <when value="ali"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
44 <repeat min="1" name="aliranges" title="Alignment Ranges"> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
45 <param label="Alignment Range Start" name="alirangestart" type="integer" value="10" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
46 <param label="Alignment Range End" name="alirangeend" type="integer" value="20" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
47 </repeat> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
48 </when> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
49 </conditional> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
50 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
51 <!-- TODO: support model2ali/ali2model as separate utilities? --> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
52 <expand macro="format_selector"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
53 <expand macro="mcss"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
54 <expand macro="arsws"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
55 <expand macro="seed"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
56 </inputs> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
57 <outputs> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
58 <data format="stockholm" name="output" label="Output MSA"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
59 </outputs> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
60 <tests> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
61 <test> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
62 <param name="msafile" value="globins4.sto"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
63 <param name="modelrangestart" value="10" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
64 <param name="modelrangeend" value="20" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
65 <expand macro="seed_test" /> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
66 <output name="output" file="globins-masked.sto" lines_diff="4"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
67 </test> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
68 </tests> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
69 <help><![CDATA[ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
70 @HELP_PRE@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
71 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
72 alimask is used to apply a mask line to a multiple sequence alignment, based on |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
73 provided alignment or model coordinates. When hmmbuild receives a masked |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
74 alignment as input, it produces a profile model in which the emission |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
75 probabilities at masked positions are set to match the background frequency, |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
76 rather than being set based on observed frequencies in the alignment. |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
77 Position-specific insertion and deletion rates are not altered, even in masked |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
78 regions. alimask autodetects input format, and produces masked alignments in |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
79 Stockholm format. <msafile> may contain only one sequence alignment. |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
80 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
81 A common motivation for masking a region in an alignment is that the region |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
82 contains a simple tandem repeat that is observed to cause an unacceptably high |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
83 rate of false positive hits. |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
84 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
85 In the simplest case, a mask range is given in coordinates relative to the |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
86 input alignment, using --alirange <s>. However it is more often the case that |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
87 the region to be masked has been identified in coordinates relative to the |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
88 profile model (e.g. based on recognizing a simple repeat pattern in false hit |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
89 alignments or in the HMM logo). Not all alignment columns are converted to |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
90 match state positions in the profile (see the --symfrac flag for hmmbuild for |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
91 discussion), so model positions do not necessarily match up to alignment column |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
92 positions. To remove the burden of converting model positions to alignment |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
93 positions, alimask accepts the mask range input in model coordinates as well, |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
94 using --modelrange <s>. When using this flag, alimask determines which |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
95 alignment positions would be identified by hmmbuild as match states, a process |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
96 that requires that all hmmbuild flags impacting that decision be supplied to |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
97 alimask. It is for this reason that many of the hmmbuild flags are also used by |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
98 alimask. |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
99 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
100 @HELP_PRE_OTH@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
101 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
102 **Ranges** |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
103 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
104 Ranges are expressed as a hyphenated pair of integers, e.g. 12-40. Ranges can |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
105 be expressed in terms of model coordinates or alignment coordinates. |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
106 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
107 @FORMAT_SELECTOR_HELP@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
108 @MCSS_HELP@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
109 @ARSWS_HELP@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
110 @SEED_HELP@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
111 |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
112 @ATTRIBUTION@ |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
113 ]]></help> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
114 <expand macro="citation"/> |
a20b2c7c5eee
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 4261b86af790a3535c0b9a8122f92225f8f67b47
iuc
parents:
diff
changeset
|
115 </tool> |