comparison alignvis.xml @ 11:b7f1d9f8f3bc

Uploaded
author xuebing
date Sat, 10 Mar 2012 07:59:27 -0500
parents
children
comparison
equal deleted inserted replaced
10:1558594a3c2e 11:b7f1d9f8f3bc
1 <tool id="alignvis" name="heatmap">
2 <description>of align output</description>
3 <command interpreter="python"> alignvis.py $input $output $uselog $subset $reorder $color $scale </command>
4 <inputs>
5 <param name="input" format="tabular" type="data" label="Original file"/>
6 <param name="uselog" label="log transform the data" type="boolean" truevalue="uselog" falsevalue="none" checked="True"/>
7 <param name="subset" label="sample a subset if the data is too large" type="boolean" truevalue="subset" falsevalue="none" checked="True"/>
8 <param name="scale" label="normalize by row/feature" type="boolean" truevalue="scale" falsevalue="none" checked="False"/>
9 <param name="reorder" type="select" label="reorder features (rows)">
10 <option value="none" selected="true">None</option>
11 <option value="sort_by_sum">Sort row by sum</option>
12 <option value="sort_by_center">Sort row by center </option>
13 <option value="average">Cluster rows (average)</option>
14 <option value="median">Cluster rows (median) </option>
15 <option value="centroid">Cluster rows (centroid)</option>
16 <option value="complete">Cluster rows (complete)</option>
17 <option value="single">Cluster rows (single)</option>
18 </param>
19
20 <param name="color" type="select" label="color scheme">
21 <option value="heat" selected="true">heat</option>
22 <option value="gray">gray</option>
23 <option value="rainbow">rainbow</option>
24 <option value="topo">topo</option>
25 <option value="terrain">terrain</option>
26 </param>
27 </inputs>
28 <outputs>
29 <data format="pdf" name="output" />
30 </outputs>
31 <help>
32
33 **What it does**
34
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.
36
37 **Example**
38
39 .. image:: ./static/operation_icons/heatmap.png
40
41 </help>
42 </tool>