1
|
1 <tool id="MRF" name="MRF" version="0.2.0">
|
|
2 <description>MRF</description>
|
|
3 <command interpreter="python"> mrf.py -f $configfile -o "$cluster" "$resulttxt" "$morphology" "$histogram"
|
|
4 </command>
|
|
5 <requirements>
|
|
6 <requirement type="binary">MRF</requirement>
|
|
7 </requirements>
|
|
8 <inputs>
|
|
9 <param name="posfile" type="data" label="First POS filename" help="Select the POS file your have uploaded" format="pos" />
|
|
10 <param name="range" type="data" label="Range" help="Select the range file you have uploaded" format="rng" />
|
|
11 <param name="neighbours" size="2" type="integer" value="2" label="Nearest neighbours" help="How many nearest neighbours (kNN >= 1)?" />
|
|
12 <param name="rmaxnm" size="20" type="text" value="1.0" label="Maximum radius" help="What maximum radius (r_max nm) should the kNN be within (r_max > 0.0)?" />
|
|
13 <param name="solute" size="20" type="text" value="2 1 0" label="Solute elements" help="List of the solute elements, seperate by a space and ending with 0" />
|
|
14 <param name="morpho_min" size="2" type="text" value="2" label="Morphology Cluster size min" help="Minimum cluster size for the morphology file (min 2)" />
|
|
15 <param name="morpho_max" size="2" type="text" value="999999" label="Morphology Cluster size max" help="Maximum cluster size for the morphology file (max 999999)" />
|
|
16 <param name="cluster_min" size="6" type="text" value="2" label="Cluster size min" help="Minimum cluster size for the cluster file" />
|
|
17 <param name="cluster_max" size="6" type="text" value="999999" label="Cluster size max" help="Maximum cluster size for the cluster file (max 999999)" />
|
|
18 </inputs>
|
|
19 <outputs>
|
|
20 <data name="cluster" format="pos" />
|
|
21 <data name="resulttxt" format="txt" />
|
|
22 <data name="morphology" format="txt" />
|
|
23 <data name="histogram" format="txt" />
|
|
24 </outputs>
|
|
25 <configfiles>
|
|
26 <configfile name="configfile">
|
|
27 $posfile $range $neighbours $rmaxnm $solute 1 1 $morpho_min $morpho_max 1 $cluster_min $cluster_max
|
|
28 </configfile>
|
|
29 </configfiles>
|
|
30 <help>
|
|
31 </help>
|
|
32 </tool>
|