Mercurial > repos > iuc > hyphy_absrel
comparison hyphy_absrel.xml @ 0:419cd817299c draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/ commit 538d41e9789e18c8edb3dc68a1aabbee9b9f8bea
author | iuc |
---|---|
date | Thu, 17 Jan 2019 04:22:13 -0500 |
parents | |
children | 5c87e4907e08 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:419cd817299c |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="hyphy_absrel" name="HyPhy-aBSREL" version="@VERSION@+galaxy0"> | |
3 <description>adaptive Branch Site Random Effects Likelihood</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements" /> | |
8 <expand macro="version_command" /> | |
9 <command detect_errors="exit_code"> | |
10 <![CDATA[ | |
11 ln -s '$input_file' absrel_input.fa && | |
12 ln -s '$input_nhx' absrel_input.nhx && | |
13 echo $gencodeid > tool_params && | |
14 echo `pwd`/absrel_input.fa >> tool_params && | |
15 echo `pwd`/absrel_input.nhx >> tool_params && | |
16 echo '$branches' >> tool_params && | |
17 @HYPHY_INVOCATION@ \$HYPHY_LIB/TemplateBatchFiles/SelectionAnalyses/aBSREL.bf | |
18 #if $log: | |
19 > '$absrel_log' | |
20 #end if | |
21 ]]> | |
22 </command> | |
23 <inputs> | |
24 <expand macro="inputs" /> | |
25 <param name="log" type="boolean" truevalue="" falsevalue="" label="Output aBSREL log to history" /> | |
26 <expand macro="gencode" /> | |
27 <expand macro="branches" /> | |
28 </inputs> | |
29 <outputs> | |
30 <data name="absrel_log" format="txt"> | |
31 <filter>log</filter> | |
32 </data> | |
33 <data name="absrel_output" format="json" from_work_dir="absrel_input.fa.ABSREL.json" /> | |
34 </outputs> | |
35 <tests> | |
36 <test> | |
37 <param name="input_file" ftype="fasta" value="absrel-in1.fa" /> | |
38 <param name="input_nhx" ftype="nhx" value="absrel-in1.nhx" /> | |
39 <param name="log" value="false" /> | |
40 <output name="absrel_output" file="absrel-out1.json" compare="sim_size" /> | |
41 </test> | |
42 </tests> | |
43 <help> | |
44 <![CDATA[ | |
45 aBSREL (Adaptive branch-site random effects likelihood) uses an adaptive random effects branch-site model framework to test whether each branch has evolved under positive selection, using a procedure which infers an optimal number of rate categories per branch. | |
46 ]]> | |
47 </help> | |
48 <expand macro="citations"> | |
49 <citation type="doi">10.1093/molbev/msv022</citation> | |
50 </expand> | |
51 </tool> |