comparison hmmfetch.xml @ 3:cd078bda9921 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit fa7dec5f222510d58f566f4799a04e3731fa03f6
author iuc
date Sat, 07 Apr 2018 03:51:39 -0400
parents 1d78de693262
children 1fca13688921
comparison
equal deleted inserted replaced
2:694e79e5efb3 3:cd078bda9921
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="hmmer_hmmfetch" name="hmmfetch" version="@WRAPPER_VERSION@.0"> 2 <tool id="hmmer_hmmfetch" name="hmmfetch" version="@TOOL_VERSION@">
3 <description>retrieve profile HMM(s) from a file</description> 3 <description>retrieve profile HMM(s) from a file</description>
4 <macros> 4 <macros>
5 <import>macros.xml</import> 5 <import>macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements"/> 7 <expand macro="requirements"/>
8 <expand macro="stdio"/> 8 <expand macro="stdio"/>
9 <command><![CDATA[ 9 <command><![CDATA[
10 hmmfetch -f $hmmfile $keyfile > $output; 10 hmmfetch -f '$hmmfile' '$keyfile' > '$output'
11 ]]></command> 11 ]]></command>
12 <inputs> 12 <inputs>
13 <!-- TODO: implement auto-indexing --> 13 <!-- TODO: implement auto-indexing -->
14 <expand macro="input_hmm" /> 14 <expand macro="input_hmm" />
15 <param name="keyfile" type="data" format="tabular,txt" label="List of HMM names to extract"/> 15 <param name="keyfile" type="data" format="tabular,txt" label="List of HMM names to extract"/>
16 </inputs> 16 </inputs>
17 <outputs> 17 <outputs>
18 <data format="hmm3" name="output" label="Selected HMM Models from $hmmfile.name"> 18 <data name="output" format="hmm3" label="Selected HMM Models from $hmmfile.name">
19 </data> 19 </data>
20 </outputs> 20 </outputs>
21 <tests> 21 <tests>
22 <test> 22 <test>
23 <param name="hmmfile" value="fn3.hmm"/> 23 <param name="hmmfile" value="fn3.hmm"/>
33 separated by newlines 33 separated by newlines
34 34
35 By default, fetched HMMs are printed to standard output in HMMER3 format. 35 By default, fetched HMMs are printed to standard output in HMMER3 format.
36 36
37 @ATTRIBUTION@ 37 @ATTRIBUTION@
38 ]]></help> 38 ]]></help>
39 <expand macro="citation"/> 39 <expand macro="citation"/>
40 </tool> 40 </tool>