comparison hmmbuild.xml.orig @ 11:405dd85a9408 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
author iuc
date Tue, 31 Aug 2021 08:43:59 +0000
parents
children
comparison
equal deleted inserted replaced
10:ffeedf9b8dce 11:405dd85a9408
1 <?xml version="1.0"?>
2 <<<<<<< HEAD
3 <tool id="hmmer_hmmbuild" name="hmmbuild" version="@TOOL_VERSION@+galaxy1">
4 <description>Build a profile HMM from an input multiple alignment</description>
5 <macros>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="requirements"/>
9 <expand macro="stdio"/>
10 <command><![CDATA[
11 @ADDTHREADS@
12 =======
13 <tool id="hmmer_hmmbuild" name="hmmbuild" version="@TOOL_VERSION@">
14 <description>Build a profile HMM from an input multiple alignment</description>
15 <expand macro="bio_tools"/>
16 <macros>
17 <import>macros.xml</import>
18 </macros>
19 <expand macro="requirements"/>
20 <expand macro="stdio"/>
21 <command><![CDATA[
22 >>>>>>> c37d72558 (add more bio.tool IDs)
23 hmmbuild
24
25 #if $hmmname:
26 -n '$hmmname'
27 #end if
28
29 @FORMAT_SELECTOR@
30 @MCSS@
31 @ARSWS@
32 @AEEWS@
33 @PRIOR@
34 @HSSI@
35 @EVAL_CALIB@
36
37 @CPU@
38 @SEED@
39
40 @LENGTHS@
41 #if str($maxinsertlen):
42 --maxinsertlen $maxinsertlen
43 #end if
44
45 '$hmmout'
46 '$msafile'
47 ]]></command>
48 <inputs>
49 <expand macro="input_msa" />
50 <param name="hmmname" argument="-n" type="text" optional="true" label="Name for the HMM" />
51 <expand macro="format_selector"/>
52 <expand macro="mcss"/>
53 <expand macro="arsws"/>
54 <expand macro="aeews"/>
55 <expand macro="prior"/>
56 <expand macro="hssi"/>
57 <expand macro="eval_calib_xml"/>
58 <expand macro="seed"/>
59
60 <expand macro="lengths" />
61 <param argument="--maxinsertlen" type="integer" optional="true" label="Pretend all inserts are length &lt;= n" />
62 </inputs>
63 <outputs>
64 <data name="hmmout" format="hmm3" label="HMM profile from $msafile.name"/>
65 </outputs>
66 <tests>
67 <test>
68 <param name="msafile" value="globins4.sto"/>
69 <expand macro="seed_test" />
70 <output name="hmmout" file="globins4.hmm" compare="sim_size">
71 <assert_contents>
72 <has_line_matching expression="HMMER3/f.*"/>
73 <has_line_matching expression="ALPH amino"/>
74 <has_line_matching expression="NSEQ 4"/>
75 <has_line_matching expression="//"/>
76 </assert_contents>
77 </output>
78 </test>
79 <test>
80 <param name="msafile" value="MADE1.sto"/>
81 <param name="input_format_select" value="--dna"/>
82 <expand macro="seed_test" />
83 <output name="hmmout" file="MADE1.hmm" compare="sim_size">
84 <assert_contents>
85 <has_line_matching expression="HMMER3/f.*"/>
86 <has_line_matching expression="ALPH DNA"/>
87 <has_line_matching expression="NSEQ 1997"/>
88 <has_line_matching expression="//"/>
89 </assert_contents>
90 </output>
91 </test>
92 </tests>
93 <help><![CDATA[
94 @HELP_PRE@
95
96 For each multiple sequence alignment in <msafile> build a profile HMM and save
97 it to a new file <hmmfile out>.
98
99 @HELP_PRE_OTH@
100
101 @FORMAT_SELECTOR_HELP@
102 @MCSS_HELP@
103 @ARSWS_HELP@
104 @AEEWS_HELP@
105 @PRIOR_HELP@
106 @HSSI_HELP@
107 @EVAL_CALIB_HELP@
108 @SEED_HELP@
109 @LENGTHS_HELP@
110
111 @ATTRIBUTION@
112 ]]></help>
113 <expand macro="citation"/>
114 </tool>