comparison tools/mytools/cdf-old-not-used/cdf2-old.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9071e359b9a3
1 <tool id="cdf2" name="CDF">
2 <description>plot of two columns from two files</description>
3 <command interpreter="python">cdf2.py $input1 $input2 $output $c1 $c2 $labels $log $title </command>
4 <inputs>
5 <param name="input1" format="tabular" type="data" label="input file 1"/>
6 <param name="c1" size="2" type="text" label="column number" value="1"/>
7 <param name="input2" format="tabular" type="data" label="input file 2"/>
8 <param name="c2" size="2" type="text" label="column number" value="1"/>
9 <param name="title" size="50" type="text" label="Figure title (no space allowed) " value="CDF-plot"/>
10 <param name="labels" size="50" type="text" label="Figure legend (sep by comma)" value="sample,control"/>
11 <param name="log" label="log transform the data" type="boolean" truevalue="log" falsevalue="none" checked="False"/>
12
13 </inputs>
14 <outputs>
15 <data format="pdf" name="output" />
16 </outputs>
17 <help>
18
19 **What it does**
20
21 This tool plots the CDF of two data columns in two input files. A KS test p-value is also shown.
22
23 </help>
24 </tool>