Mercurial > repos > earlhaminst > hcluster_sg
comparison hcluster_sg.xml @ 0:4a233271d05a draft
planemo upload for repository https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg commit e24b91d3051c422ee2a20caf8bb12f0896e2c84a-dirty
author | earlhaminst |
---|---|
date | Fri, 11 Nov 2016 06:56:10 -0500 |
parents | |
children | 176639d514ee |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4a233271d05a |
---|---|
1 <tool id="hcluster_sg" name="hcluster_sg" version="0.5.1"> | |
2 <description>Hierarchically clustering on a sparse graph</description> | |
3 <requirements> | |
4 <requirement type="package" version="0.5.1">hcluster_sg</requirement> | |
5 </requirements> | |
6 <command> | |
7 <![CDATA[ | |
8 hcluster_sg | |
9 -w $w | |
10 -s $s | |
11 -m $m | |
12 $c | |
13 -b $b | |
14 $O.O_selector | |
15 #if $O.O_selector == '-O' | |
16 -r $O.r | |
17 #end if | |
18 #if $C | |
19 -C $C | |
20 #end if | |
21 -L $L | |
22 $inputFile | |
23 > $outputFile | |
24 ]]> | |
25 </command> | |
26 <inputs> | |
27 <param name="inputFile" type="data" format="tabular" label="Weight file" help="3-columns format: id-1 id-2 integer-weight" /> | |
28 <param name="w" type="integer" min="0" value="20" label="Minimum edge weight" help="(-w)" /> | |
29 <param name="s" type="float" value="0.5" label="Minimum edge density between a join" help="(-s)" /> | |
30 <param name="m" type="integer" value="500" label="Maximum size" help="(-m)" /> | |
31 <param name="c" type="boolean" truevalue="-c" falsevalue="" label="Only find single-linkage clusters" help="Bypass h-cluster (-c)" /> | |
32 <param name="b" type="float" value="0.1" label="Breaking edge density" help="(-b)" /> | |
33 <conditional name="O"> | |
34 <param name="O_selector" type="select" label="Use once-fail-inactive-forever mode" help="(-O)"> | |
35 <option value="-O">Yes</option> | |
36 <option value="" selected="true">No</option> | |
37 </param> | |
38 <when value="-O"> | |
39 <param name="r" type="integer" value="5" label="Weight resolution" help="(-r)" /> | |
40 </when> | |
41 <when value="" /> | |
42 </conditional> | |
43 <param name="C" type="data" format="tabular" optional="true" label="Category file" help="(-C)" /> | |
44 <param name="L" type="integer" value="2" label="Stringency level" help="(-L)" /> | |
45 </inputs> | |
46 <outputs> | |
47 <data format="tabular" name="outputFile" label="${tool.name} on ${on_string}" /> | |
48 </outputs> | |
49 <tests> | |
50 <test> | |
51 <param name="inputFile" ftype="tabular" value="exam-1.txt" /> | |
52 <output name="outputFile" file="hcluster_sg1.txt" /> | |
53 </test> | |
54 <test> | |
55 <param name="inputFile" ftype="tabular" value="exam-1.txt" /> | |
56 <param name="c" value="true" /> | |
57 <output name="outputFile" file="hcluster_sg2.txt" /> | |
58 </test> | |
59 </tests> | |
60 <help> | |
61 <![CDATA[ | |
62 Simple wrapper for `hcluster_sg`_. | |
63 | |
64 .. _hcluster_sg: https://github.com/douglasgscofield/hcluster | |
65 ]]> | |
66 </help> | |
67 <citations> | |
68 </citations> | |
69 </tool> |