view hmmbuild.xml @ 7:dc8860ba75d1 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 0bccf5220ed6549db7e053f85bbe917326b0a0be"
author iuc
date Wed, 21 Jul 2021 14:13:12 +0000
parents 6846f8789e33
children 923db0592cd0
line wrap: on
line source

<?xml version="1.0"?>
<tool id="hmmer_hmmbuild" name="hmmbuild" version="@TOOL_VERSION@+galaxy0">
  <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 &lt;= 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>