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

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="cdf" name="CDF">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>plot of two columns</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">cdf.py $input $output $columns $log $labels $title </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 <param name="input" format="tabular" type="data" label="input file"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
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"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <param name="title" size="50" type="text" label="Figure title (no space allowed)" value="CDF-plot"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <param name="labels" size="50" type="text" label="Figure legend (sep by comma,no space allowed)" value="sample,control"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <param name="log" label="log transform the data" type="boolean" truevalue="log" falsevalue="none" checked="False"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <data format="pdf" name="output" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 This tool plots the CDF of two data columns in the input file. A KS test p-value is also shown.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 </tool>