1
|
1 <tool id="hetbox" version="1.0" name="Minor variant boxplot">
|
3
|
2 <description> from allele counts</description>
|
5
|
3 <command interpreter="python">hetbox.py $input $outplot $outreport
|
|
4 </command>
|
1
|
5 <inputs>
|
3
|
6 <param name="input" type="data" format="tabular" label="Input allele counts"/>
|
5
|
7 <param name="report" type="boolean" truevalue="yes" falsevalue="no" checked="True label="Also produce a text report" />
|
1
|
8 </inputs>
|
|
9 <outputs>
|
|
10 <data name="outplot" format="png"/>
|
5
|
11 <data name="outreport" format="tabular">
|
|
12 <filter>report is True</filter>
|
|
13 </data>
|
1
|
14 </outputs>
|
|
15
|
|
16 <help>
|
|
17
|
3
|
18 .. class:: infomark
|
|
19
|
|
20 **What it does**
|
|
21
|
5
|
22 This will create a boxplot from the output of the "Count alleles" tool, showing the number of minor alleles per sample and the distribution of their frequencies (MAF). It can also, optionally, produce a textual report with these numbers.
|
3
|
23
|
1
|
24 </help>
|
|
25
|
|
26 <requirements>
|
|
27 <requirement type="package" version="1.7.1">numpy</requirement>
|
|
28 </requirements>
|
|
29 </tool> |