0
|
1 <tool id="cdf" name="CDF">
|
|
2 <description>plot of two columns</description>
|
|
3 <command interpreter="python">cdf.py $input $output $columns $log $labels $title </command>
|
|
4 <inputs>
|
|
5 <param name="input" format="tabular" type="data" label="input file"/>
|
|
6 <param name="columns" size="4" type="text" label="column numbers (sep by comma)" help="i.e. plot CDF for data in column 2 and 3" value="2,3"/>
|
|
7 <param name="title" size="50" type="text" label="Figure title (no space allowed)" value="CDF-plot"/>
|
|
8 <param name="labels" size="50" type="text" label="Figure legend (sep by comma,no space allowed)" value="sample,control"/>
|
|
9 <param name="log" label="log transform the data" type="boolean" truevalue="log" falsevalue="none" checked="False"/>
|
|
10 </inputs>
|
|
11 <outputs>
|
|
12 <data format="pdf" name="output" />
|
|
13 </outputs>
|
|
14 <help>
|
|
15
|
|
16 **What it does**
|
|
17
|
|
18 This tool plots the CDF of two data columns in the input file. A KS test p-value is also shown.
|
|
19
|
|
20 </help>
|
|
21 </tool>
|