annotate allele-counts.xml @ 0:28c40f4b7d2b

Uploaded xml description
author nick
date Fri, 24 May 2013 10:32:56 -0400
parents
children 933a9435939c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
1 <tool id="allele_counts_1" version="1.0" name="Count alleles">
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
2 <description>and minor allele frequencies</description>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
3 <command interpreter="python">allele-counts.py -i $input -o $output -f $freq -c $covg $header</command>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
4 <inputs>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
5 <param name="input" type="data" format="vcf" label="Input variants from Naive Variants Detector"/>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
6 <param name="freq" type="float" value="1.0" min="0" max="100" label="Minor allele frequency threshold"/>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
7 <param name="covg" type="integer" value="10" min="0" label="Coverage threshold (per strand)"/>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
8 <param name="header" type="boolean" truevalue="-H" falsevalue="" checked="False" label="Write header line" />
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
9 </inputs>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
10 <outputs>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
11 <data name="output" format="tabular"/>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
12 </outputs>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
13 <stdio>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
14 <exit_code range="1:" err_level="fatal"/>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
15 <exit_code range=":-1" err_level="fatal"/>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
16 </stdio>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
17
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
18 <help>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
19 This tool parses the output of Naive Variant Detector, counting variants, calculating numbers of alleles, and minor allele frequency. It applies filters based on coverage, strand bias, and minor allele frequency cutoffs.
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
20
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
21 **Note**: The VCF file from the Naive Variant Detector must include counts *per strand*.
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
22 </help>
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
23
28c40f4b7d2b Uploaded xml description
nick
parents:
diff changeset
24 </tool>