Mercurial > repos > iuc > hmmer3
comparison hmmbuild.xml @ 0:afd1fd3095ad draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 649ac868f2e7d79f354882cb75bf5d1055b30907
| author | iuc |
|---|---|
| date | Tue, 12 May 2015 14:59:50 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:afd1fd3095ad |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <tool id="hmmer_hmmbuild" name="hmmbuild" version="@WRAPPER_VERSION@.0"> | |
| 3 <description>Build a profile HMM from an input multiple alignment</description> | |
| 4 <macros> | |
| 5 <import>macros.xml</import> | |
| 6 </macros> | |
| 7 <expand macro="requirements"/> | |
| 8 <expand macro="stdio"/> | |
| 9 <command><![CDATA[ | |
| 10 hmmbuild | |
| 11 | |
| 12 #if $hmmname: | |
| 13 -n "$hmmname" | |
| 14 #end if | |
| 15 | |
| 16 @FORMAT_SELECTOR@ | |
| 17 @MCSS@ | |
| 18 @ARSWS@ | |
| 19 @AEEWS@ | |
| 20 @PRIOR@ | |
| 21 @HSSI@ | |
| 22 @EVAL_CALIB@ | |
| 23 | |
| 24 @CPU@ | |
| 25 @SEED@ | |
| 26 | |
| 27 @LENGTHS@ | |
| 28 #if $maxinsertlen: | |
| 29 --maxinsertlen $maxinsertlen | |
| 30 #end if | |
| 31 | |
| 32 $hmmout | |
| 33 $msafile | |
| 34 ]]></command> | |
| 35 <inputs> | |
| 36 <expand macro="input_msa" /> | |
| 37 <param name="hmmname" type="text" optional="True" label="Name for the HMM" help="(-n)"/> | |
| 38 <expand macro="format_selector"/> | |
| 39 <expand macro="mcss"/> | |
| 40 <expand macro="arsws"/> | |
| 41 <expand macro="aeews"/> | |
| 42 <expand macro="prior"/> | |
| 43 <expand macro="hssi"/> | |
| 44 <expand macro="eval_calib_xml"/> | |
| 45 <expand macro="seed"/> | |
| 46 | |
| 47 <expand macro="lengths" /> | |
| 48 <param name="maxinsertlen" label="Pretend all inserts are length <= n" | |
| 49 help="(--maxinsertlen)" optional="True" type="integer"/> | |
| 50 </inputs> | |
| 51 <outputs> | |
| 52 <data format="hmm3" name="hmmout" label="HMM profile from $msafile.name"/> | |
| 53 </outputs> | |
| 54 <tests> | |
| 55 <test> | |
| 56 <param name="msafile" value="globins4.sto"/> | |
| 57 <expand macro="seed_test" /> | |
| 58 <output name="hmmout" file="globins4.hmm" lines_diff="10"/> | |
| 59 </test> | |
| 60 <test> | |
| 61 <param name="msafile" value="MADE1.sto"/> | |
| 62 <expand macro="seed_test" /> | |
| 63 <output name="hmmout" file="MADE1.hmm" lines_diff="14"/> | |
| 64 </test> | |
| 65 </tests> | |
| 66 <help><![CDATA[ | |
| 67 @HELP_PRE@ | |
| 68 | |
| 69 For each multiple sequence alignment in <msafile> build a profile HMM and save | |
| 70 it to a new file <hmmfile out>. | |
| 71 | |
| 72 @HELP_PRE_OTH@ | |
| 73 | |
| 74 @FORMAT_SELECTOR_HELP@ | |
| 75 @MCSS_HELP@ | |
| 76 @ARSWS_HELP@ | |
| 77 @AEEWS_HELP@ | |
| 78 @PRIOR_HELP@ | |
| 79 @HSSI_HELP@ | |
| 80 @EVAL_CALIB_HELP@ | |
| 81 @SEED_HELP@ | |
| 82 @LENGTHS_HELP@ | |
| 83 | |
| 84 @ATTRIBUTION@ | |
| 85 ]]></help> | |
| 86 <expand macro="citation"/> | |
| 87 </tool> |
