Mercurial > repos > iuc > hmmer_hmmbuild
view hmmbuild.xml @ 6:6846f8789e33 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit db615ae8a189ad988ec08090051a128355a4be70"
author | iuc |
---|---|
date | Thu, 14 Jan 2021 15:41:47 +0000 |
parents | 750269125dc9 |
children | dc8860ba75d1 |
line wrap: on
line source
<?xml version="1.0"?> <tool id="hmmer_hmmbuild" name="hmmbuild" version="@TOOL_VERSION@+galaxy1"> <description>Build a profile HMM from an input multiple alignment</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <expand macro="stdio"/> <command><![CDATA[ @ADDTHREADS@ hmmbuild #if $hmmname: -n '$hmmname' #end if @FORMAT_SELECTOR@ @MCSS@ @ARSWS@ @AEEWS@ @PRIOR@ @HSSI@ @EVAL_CALIB@ @CPU@ @SEED@ @LENGTHS@ #if str($maxinsertlen): --maxinsertlen $maxinsertlen #end if '$hmmout' '$msafile' ]]></command> <inputs> <expand macro="input_msa" /> <param name="hmmname" argument="-n" type="text" optional="true" label="Name for the HMM" /> <expand macro="format_selector"/> <expand macro="mcss"/> <expand macro="arsws"/> <expand macro="aeews"/> <expand macro="prior"/> <expand macro="hssi"/> <expand macro="eval_calib_xml"/> <expand macro="seed"/> <expand macro="lengths" /> <param argument="--maxinsertlen" type="integer" optional="true" label="Pretend all inserts are length <= n" /> </inputs> <outputs> <data name="hmmout" format="hmm3" label="HMM profile from $msafile.name"/> </outputs> <tests> <test> <param name="msafile" value="globins4.sto"/> <expand macro="seed_test" /> <output name="hmmout" file="globins4.hmm" compare="sim_size"> <assert_contents> <has_line_matching expression="HMMER3/f.*"/> <has_line_matching expression="ALPH amino"/> <has_line_matching expression="NSEQ 4"/> <has_line_matching expression="//"/> </assert_contents> </output> </test> <test> <param name="msafile" value="MADE1.sto"/> <param name="input_format_select" value="--dna"/> <expand macro="seed_test" /> <output name="hmmout" file="MADE1.hmm" compare="sim_size"> <assert_contents> <has_line_matching expression="HMMER3/f.*"/> <has_line_matching expression="ALPH DNA"/> <has_line_matching expression="NSEQ 1997"/> <has_line_matching expression="//"/> </assert_contents> </output> </test> </tests> <help><![CDATA[ @HELP_PRE@ For each multiple sequence alignment in <msafile> build a profile HMM and save it to a new file <hmmfile out>. @HELP_PRE_OTH@ @FORMAT_SELECTOR_HELP@ @MCSS_HELP@ @ARSWS_HELP@ @AEEWS_HELP@ @PRIOR_HELP@ @HSSI_HELP@ @EVAL_CALIB_HELP@ @SEED_HELP@ @LENGTHS_HELP@ @ATTRIBUTION@ ]]></help> <expand macro="citation"/> </tool>