annotate tools/mytools/alignvis.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="alignvis" name="heatmap">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>of align output</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python"> alignvis.py $input $output $uselog $subset $reorder $color $scale </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 <param name="input" format="tabular" type="data" label="Original file"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 <param name="uselog" label="log transform the data" type="boolean" truevalue="uselog" falsevalue="none" checked="True"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <param name="subset" label="sample a subset if the data is too large" type="boolean" truevalue="subset" falsevalue="none" checked="True"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <param name="scale" label="normalize by row/feature" type="boolean" truevalue="scale" falsevalue="none" checked="False"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <param name="reorder" type="select" label="reorder features (rows)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <option value="none" selected="true">None</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <option value="sort_by_sum">Sort row by sum</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <option value="sort_by_center">Sort row by center </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 <option value="average">Cluster rows (average)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 <option value="median">Cluster rows (median) </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 <option value="centroid">Cluster rows (centroid)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 <option value="complete">Cluster rows (complete)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <option value="single">Cluster rows (single)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <param name="color" type="select" label="color scheme">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <option value="heat" selected="true">heat</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <option value="gray">gray</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <option value="rainbow">rainbow</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <option value="topo">topo</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <option value="terrain">terrain</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 <data format="pdf" name="output" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 This tool generates a heatmap for output from 'align' tool. Each row is the color-coded coverage of a feature, and the features are sorted by the total coverage in the interval.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 **Example**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 .. image:: ./static/operation_icons/heatmap.png
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 </tool>