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