Mercurial > repos > nick > minor_variant_boxplot
annotate hetbox.xml @ 7:a777a76205cc draft default tip
Current version - documentation and suppressing error on stderr messages
author | nick |
---|---|
date | Tue, 04 Jun 2013 00:07:06 -0400 |
parents | d38113d9c4d6 |
children |
rev | line source |
---|---|
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"/> |
7
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
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> |
7
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
15 <stdio> |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
16 <exit_code range="1:" err_level="fatal"/> |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
17 <exit_code range=":-1" err_level="fatal"/> |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
18 </stdio> |
1 | 19 |
20 <help> | |
21 | |
3 | 22 .. class:: infomark |
23 | |
24 **What it does** | |
25 | |
7
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
26 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 text report with these numbers. |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
27 |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
28 .. class:: infomark |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
29 |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
30 **The boxplot** |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
31 |
a777a76205cc
Current version - documentation and suppressing error on stderr messages
nick
parents:
5
diff
changeset
|
32 The graphic shows the distribution of the minor allele frequencies as a boxplot per sample. At the bottom of each plot, a count (N) is given of the number of minor alleles in the plot. |
3 | 33 |
1 | 34 </help> |
35 | |
36 <requirements> | |
37 <requirement type="package" version="1.7.1">numpy</requirement> | |
38 </requirements> | |
39 </tool> |