view hmmscan.xml @ 6:d92dd2f040cd 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:43:54 +0000
parents be7097d6e3ff
children be072920a53e
line wrap: on
line source

<?xml version="1.0"?>
<tool id="hmmer_hmmscan" name="hmmscan" version="@TOOL_VERSION@+galaxy1">
  <description>search protein sequence(s) against a protein profile database</description>
  <macros>
    <import>macros.xml</import>
  </macros>
  <expand macro="requirements"/>
  <expand macro="stdio"/>
  <command><![CDATA[
@ADDTHREADS@
@INPUTHMMCHOICE@
hmmscan

@OFORMAT_WITH_OPTS@
@THRESHOLDS@
@CUT@
@ACCEL_HEUR@
@ADV_OPTS@
@CPU@
@SEED@

'$input_hmm_filename'
'$seqfile'
> '$output'
  ]]></command>
  <inputs>
    <expand macro="input_hmm_choice" />
    <!-- todo use Galaxy features like data libraries/data tables/??? -->
    <param name="seqfile" type="data" format="fasta" label="Sequence file"/>
    <expand macro="oformat_with_opts_dom_pfam"/>
    <expand macro="thresholds_xml"/>
    <expand macro="cut"/>
    <expand macro="accel_heur_xml"/>
    <expand macro="adv_opts"/>
    <expand macro="seed"/>
  </inputs>
  <outputs>
    <expand macro="output_dom_pfam" tool="HMMSCAN"/>
  </outputs>
  <tests>
    <test expect_num_outputs="4">
      <param name="input_hmm_conditional|input_hmm_source" value="history"/>
      <param name="input_hmm_conditional|hmmfile" value="MADE1.hmm"/>
      <param name="seqfile" value="dna_target.fa"/>
      <expand macro="oformat_test" />
      <expand macro="seed_test" />
      <output name="output" file="MADE1.out" lines_diff="24">
          <expand macro="assert_out" tool="hmmscan"/>
      </output>
      <output name="tblout" file="MADE1.out.tblout" lines_diff="14">
          <expand macro="assert_tblout" tool="hmmscan"/>
      </output>
      <output name="domtblout" file="MADE1.out.domtblout" lines_diff="10">
          <expand macro="assert_tblout" tool="hmmscan"/>
      </output>
      <output name="pfamtblout" file="MADE1.out.pfamtblout" lines_diff="10">
          <expand macro="assert_tblout" tool="hmmscan"/>
      </output>
    </test>
  </tests>
  <help><![CDATA[
@HELP_PRE@

hmmscan is used to search protein sequences against collections of protein
profiles. For each sequence in <seqfile>, use that query sequence to search the
target database of profiles in <hmmfile>, and output ranked lists of the profiles
with the most significant matches to the sequence.

@HELP_PRE_OTH@

@OFORMAT_WITH_OPTS_HELP@
@THRESHOLDS_HELP@
@CUT_HELP@
@ACCEL_HEUR_HELP@
@ADV_OPTS_HELP@
@SEED_HELP@

@ATTRIBUTION@
  ]]></help>
  <expand macro="citation"/>
</tool>