Mercurial > repos > iuc > drhip
annotate drhip.xml @ 0:dd2d60b55e0d draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
| author | iuc |
|---|---|
| date | Thu, 04 Dec 2025 15:05:26 +0000 |
| parents | |
| children |
| rev | line source |
|---|---|
|
0
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
1 <tool id="drhip" name="DRHIP" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
2 <description>Data Reduction for HyPhy with Inference Processing</description> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
3 <macros> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
4 <token name="@TOOL_VERSION@">0.1.4</token> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
5 <token name="@VERSION_SUFFIX@">0</token> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
6 <token name="@PROFILE@">25.0</token> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
7 </macros> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
8 <requirements> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
9 <requirement type="package" version="@TOOL_VERSION@">drhip</requirement> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
10 </requirements> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
11 <version_command>drhip --version</version_command> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
12 <command detect_errors="exit_code"><![CDATA[ |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
13 mkdir -p hyphy_input |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
14 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
15 ## For each method, create directory + link files with pattern: gene.METHOD.json |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
16 #if $busted_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
17 && mkdir -p hyphy_input/BUSTED |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
18 #for $file in $busted_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
19 && ln -s '${file}' 'hyphy_input/BUSTED/${file.element_identifier}.BUSTED.json' |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
20 #end for |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
21 #end if |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
22 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
23 #if $fel_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
24 && mkdir -p hyphy_input/FEL |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
25 #for $file in $fel_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
26 && ln -s '${file}' 'hyphy_input/FEL/${file.element_identifier}.FEL.json' |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
27 #end for |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
28 #end if |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
29 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
30 #if $meme_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
31 && mkdir -p hyphy_input/MEME |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
32 #for $file in $meme_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
33 && ln -s '${file}' 'hyphy_input/MEME/${file.element_identifier}.MEME.json' |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
34 #end for |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
35 #end if |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
36 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
37 #if $prime_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
38 && mkdir -p hyphy_input/PRIME |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
39 #for $file in $prime_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
40 && ln -s '${file}' 'hyphy_input/PRIME/${file.element_identifier}.PRIME.json' |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
41 #end for |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
42 #end if |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
43 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
44 #if $relax_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
45 && mkdir -p hyphy_input/RELAX |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
46 #for $file in $relax_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
47 && ln -s '${file}' 'hyphy_input/RELAX/${file.element_identifier}.RELAX.json' |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
48 #end for |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
49 #end if |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
50 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
51 #if $contrastfel_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
52 && mkdir -p hyphy_input/CONTRASTFEL |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
53 #for $file in $contrastfel_files |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
54 && ln -s '${file}' 'hyphy_input/CONTRASTFEL/${file.element_identifier}.CONTRASTFEL.json' |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
55 #end for |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
56 #end if |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
57 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
58 ## Run DRHIP with tabular output |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
59 && drhip |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
60 --input hyphy_input |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
61 --output output_dir |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
62 --tabular |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
63 ]]></command> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
64 <inputs> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
65 <param name="busted_files" type="data" format="hyphy_results.json" multiple="true" optional="true" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
66 label="BUSTED results" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
67 help="HyPhy BUSTED JSON result(s). Element identifier is used as gene name."/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
68 <param name="fel_files" type="data" format="hyphy_results.json" multiple="true" optional="true" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
69 label="FEL results" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
70 help="HyPhy FEL JSON result(s). Element identifier is used as gene name."/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
71 <param name="meme_files" type="data" format="hyphy_results.json" multiple="true" optional="true" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
72 label="MEME results" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
73 help="HyPhy MEME JSON result(s). Element identifier is used as gene name."/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
74 <param name="prime_files" type="data" format="hyphy_results.json" multiple="true" optional="true" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
75 label="PRIME results" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
76 help="HyPhy PRIME JSON result(s). Element identifier is used as gene name."/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
77 <param name="relax_files" type="data" format="hyphy_results.json" multiple="true" optional="true" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
78 label="RELAX results" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
79 help="HyPhy RELAX JSON result(s). Required for comparison group analyses. Element identifier is used as gene name."/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
80 <param name="contrastfel_files" type="data" format="hyphy_results.json" multiple="true" optional="true" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
81 label="Contrast-FEL results" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
82 help="HyPhy Contrast-FEL result(s). Required for comparison group analyses. Element identifier is used as gene name."/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
83 </inputs> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
84 <outputs> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
85 <data name="combined_summary" format="tabular" from_work_dir="output_dir/combined_summary.tab" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
86 label="${tool.name} on ${on_string}: Combined Summary"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
87 <data name="combined_sites" format="tabular" from_work_dir="output_dir/combined_sites.tab" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
88 label="${tool.name} on ${on_string}: Combined Sites"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
89 <data name="combined_comparison_summary" format="tabular" from_work_dir="output_dir/combined_comparison_summary.tab" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
90 label="${tool.name} on ${on_string}: Combined Comparison Summary"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
91 <filter>relax_files or contrastfel_files</filter> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
92 </data> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
93 <data name="combined_comparison_site" format="tabular" from_work_dir="output_dir/combined_comparison_site.tab" |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
94 label="${tool.name} on ${on_string}: Combined Comparison Site"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
95 <filter>relax_files or contrastfel_files</filter> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
96 </data> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
97 </outputs> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
98 <tests> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
99 <test expect_num_outputs="2"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
100 <param name="busted_files" value="BUSTED/gene1.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
101 <param name="fel_files" value="FEL/gene1.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
102 <param name="meme_files" value="MEME/gene1.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
103 <param name="prime_files" value="PRIME/gene1.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
104 <output name="combined_summary" ftype="tabular"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
105 <assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
106 <has_text text="gene" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
107 <has_text text="BUSTED" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
108 <has_text text="gene1.json" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
109 <has_text text="pval" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
110 <has_text text="omega" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
111 <has_n_lines n="2" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
112 <has_n_columns n="9"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
113 </assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
114 </output> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
115 <output name="combined_sites" ftype="tabular"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
116 <assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
117 <has_text text="gene" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
118 <has_text text="site" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
119 <has_text text="gene1.json" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
120 <has_text text="fel_selection" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
121 <has_text text="meme_marker" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
122 <has_text text="prime_marker" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
123 <has_n_lines n="101" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
124 <has_n_columns n="8"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
125 </assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
126 </output> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
127 </test> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
128 <test expect_num_outputs="4"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
129 <param name="busted_files" value="BUSTED/gene2.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
130 <param name="fel_files" value="FEL/gene2.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
131 <param name="meme_files" value="MEME/gene2.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
132 <param name="prime_files" value="PRIME/gene2.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
133 <param name="relax_files" value="RELAX/gene2.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
134 <param name="contrastfel_files" value="CONTRASTFEL/gene2.json" ftype="hyphy_results.json"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
135 <output name="combined_summary" ftype="tabular"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
136 <assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
137 <has_text text="gene" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
138 <has_text text="BUSTED" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
139 <has_text text="RELAX" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
140 <has_text text="gene2.json" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
141 <has_text text="pval" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
142 <has_text text="omega" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
143 <has_n_lines n="2" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
144 <has_n_columns n="12"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
145 </assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
146 </output> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
147 <output name="combined_sites" ftype="tabular"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
148 <assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
149 <has_text text="gene" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
150 <has_text text="site" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
151 <has_text text="gene2.json" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
152 <has_text text="fel_selection" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
153 <has_text text="meme_marker" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
154 <has_text text="prime_marker" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
155 <has_n_lines n="101" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
156 <has_n_columns n="8"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
157 </assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
158 </output> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
159 <output name="combined_comparison_summary" ftype="tabular"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
160 <assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
161 <has_text text="gene" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
162 <has_text text="comparison_group" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
163 <has_text text="gene2.json" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
164 <has_text text="Foreground" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
165 <has_text text="Reference" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
166 <has_text text="background" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
167 <has_n_lines n="4" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
168 <has_n_columns n="6"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
169 </assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
170 </output> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
171 <output name="combined_comparison_site" ftype="tabular"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
172 <assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
173 <has_text text="gene" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
174 <has_text text="site" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
175 <has_text text="comparison_group" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
176 <has_text text="gene2.json" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
177 <has_text text="cfel_beta" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
178 <has_text text="Foreground" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
179 <has_text text="Reference" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
180 <has_n_lines n="301" /> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
181 <has_n_columns n="8"/> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
182 </assert_contents> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
183 </output> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
184 </test> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
185 </tests> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
186 <help><![CDATA[ |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
187 **DRHIP: Data Reduction for HyPhy with Inference Processing** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
188 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
189 Combines results from multiple HyPhy selection analysis methods into unified tabular files. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
190 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
191 ----- |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
192 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
193 **What it does** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
194 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
195 DRHIP takes JSON outputs from HyPhy selection analysis tools and creates summary tables that combine results across multiple genes and analysis methods. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
196 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
197 ----- |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
198 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
199 **Inputs** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
200 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
201 DRHIP expects HyPhy JSON result files from one or more of these methods: |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
202 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
203 - **BUSTED** – Branch-site test for episodic diversifying selection |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
204 - **FEL** – Fixed effects likelihood test for selection |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
205 - **MEME** – Mixed effects model of evolution |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
206 - **PRIME** – Property-informed models of evolution |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
207 - **RELAX** (optional) – Test for relaxation/intensification of selection |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
208 - **Contrast-FEL** (optional) – Compare selection between groups |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
209 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
210 At least **one method must have at least one JSON input**. Individual method inputs are marked optional so that: |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
211 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
212 - You can run DRHIP with any subset of methods (for example, only BUSTED+FEL), and |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
213 - If a method fails for some genes but succeeds for others, you can still pass the successful results and DRHIP will report what it can from the available methods. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
214 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
215 You can provide: |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
216 - Single datasets |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
217 - Multiple datasets selected at once |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
218 - Dataset collections (for workflow use); element identifiers are used as gene names. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
219 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
220 ----- |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
221 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
222 **Outputs** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
223 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
224 **Always generated (if corresponding inputs are provided):** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
225 - **Combined Summary** (`tabular`) – Gene-level statistics across all supplied methods |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
226 - **Combined Sites** (`tabular`) – Site-level analysis results across all supplied methods |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
227 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
228 **Generated when RELAX or Contrast-FEL results are provided:** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
229 - **Combined Comparison Summary** (`tabular`) – Group-specific statistics |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
230 - **Combined Comparison Site** (`tabular`) – Group-specific site analysis |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
231 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
232 ----- |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
233 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
234 **Typical usage patterns** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
235 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
236 - **Per-gene summary without branch-group comparisons:** provide any subset of BUSTED, FEL, MEME, PRIME results. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
237 - **Branch-group comparisons:** provide the main methods plus RELAX and/or Contrast-FEL to obtain comparison summary and site tables. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
238 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
239 ----- |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
240 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
241 **Workflow tips** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
242 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
243 - Connect HyPhy tool outputs directly to DRHIP inputs. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
244 - Gene names come from collection element names. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
245 - Rename collection elements to control gene names (for example, remove file extensions). |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
246 - Works best with dataset mapping over collections. |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
247 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
248 ----- |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
249 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
250 **More information** |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
251 |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
252 https://github.com/veg/DRHIP |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
253 ]]></help> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
254 <citations> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
255 <citation type="bibtex"> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
256 @software{drhip2024, |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
257 author = {Callan, Danielle and Verdonk, Hannah and Kosakovsky Pond, Sergei L}, |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
258 title = {DRHIP: Data Reduction for HyPhy with Inference Processing}, |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
259 year = {2024}, |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
260 url = {https://github.com/veg/DRHIP}, |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
261 version = {@TOOL_VERSION@} |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
262 } |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
263 </citation> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
264 </citations> |
|
dd2d60b55e0d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/drhip commit 15c654c3d27df68a47483031961ace7f5b8d998d
iuc
parents:
diff
changeset
|
265 </tool> |
