2
|
1 <tool id="Profilegenerator" name="Generate all possible combination of STR length profile" version="2.0.0">
|
0
|
2 <description> of the consecutive allele from given error profile </description>
|
|
3 <command interpreter="python2.7">profilegenerator.py $error_profile $MOTIF $Maxdepth $minprob > $output </command>
|
|
4
|
|
5 <inputs>
|
|
6 <param name="error_profile" type="data" label="Select error profile" />
|
|
7 <param name="MOTIF" type="text" value="A" label="Type in a motif of interest (e.g. AGC)" />
|
|
8 <param name="Maxdepth" type="integer" value="30" label="Maximum read depth of interest" />
|
|
9 <param name="minprob" type="float" value="0.00000001" label="Minimum error rate to be considered" />
|
|
10
|
|
11 </inputs>
|
|
12 <outputs>
|
|
13 <data name="output" format="tabular" />
|
|
14 </outputs>
|
|
15 <tests>
|
|
16 <!-- Test data with valid values -->
|
|
17 <test>
|
|
18 <param name="error_profile" value="sampleprofilegenerator_in"/>
|
|
19 <param name="MOTIF" value="A"/>
|
|
20 <param name="Maxdepth" value="3"/>
|
2
|
21 <param name="minprob" value="0.00000001"/>
|
0
|
22 <output name="output" file="sampleprofilegenerator_out"/>
|
|
23 </test>
|
|
24
|
|
25 </tests>
|
|
26 <help>
|
|
27
|
|
28
|
|
29 .. class:: infomark
|
|
30
|
|
31 **What it does**
|
|
32
|
2
|
33 This tool will generate all possible combination of observed STR length profiles of the consecutive alleles from given error profile. The range of observed read lengths can be filtered to contain only those that are frequently occur using "Minimum error rate to be considered" parameter.
|
0
|
34
|
2
|
35 This program will collect the lists of valid (pass "Minimum error rate to be considered" threshold) observed length profiles from combination of consecutive allele lengths. The lists that are equivalent or the subset of the other lists will be removed. For each depth and each list, length profile were generated from combination with replacement which compatible with python 2.7. There could be redundant error profiles generated from different lists if more than one combination of allele is generated due to overlap range of observed microsatellite lengths. The user need to remove them which can be done easily using **sort | uniq** command in unix.
|
0
|
36
|
|
37
|
|
38 **Citation**
|
|
39
|
|
40 When you use this tool, please cite **Fungtammasan A, Ananda G, Hile SE, Su MS, Sun C, Harris R, Medvedev P, Eckert K, Makova KD. 2015. Accurate Typing of Short Tandem Repeats from Genome-wide Sequencing Data and its Applications, Genome Research**
|
|
41
|
|
42 **Input**
|
|
43
|
|
44 - The error profile needs to contain these three columns.
|
2
|
45 - Column 1 = Correct STR length
|
|
46 - Column 2 = Observed STR length
|
0
|
47 - Column 3 = Number of observation
|
|
48
|
|
49 **Output**
|
|
50
|
2
|
51 - Column 1 = Place holder for location of STR locus. (just "chr")
|
|
52 - Column 2 = length profile (length of STR in each read that mapped to this location in comma separated format).
|
|
53 - Column 3 = motif of STR in this locus.
|
0
|
54
|
|
55 **Example**
|
|
56
|
2
|
57 - Suppose that we provide the following STR length profile ::
|
0
|
58
|
2
|
59 true obs. reads
|
0
|
60 9 9 100000
|
|
61 10 10 91456
|
|
62 10 9 1259
|
|
63 11 11 39657
|
|
64 11 10 1211
|
|
65 11 12 514
|
|
66
|
|
67
|
2
|
68 - Using the default minimum probability (fraction of reads) of 0.00000001 and motif = A, all observed STR lengths are valid. The program will generated lists of observed length profiles from consecutive allele lengths ::
|
0
|
69
|
|
70 9:10 = [9,10]
|
|
71 10:11 = [9,10,11,12]
|
|
72
|
2
|
73 - Lists that are subsets of other lists will be removed. In this example, [9,10] will not be considered.
|
0
|
74
|
2
|
75 - The program will then generate all combinations with replacement for each depth from each list. Using **maximum read depth levels =3**, we will get the following output. ::
|
0
|
76
|
|
77 chr 9,9 A
|
|
78 chr 9,10 A
|
|
79 chr 9,11 A
|
|
80 chr 9,12 A
|
|
81 chr 10,10 A
|
|
82 chr 10,11 A
|
|
83 chr 10,12 A
|
|
84 chr 11,11 A
|
|
85 chr 11,12 A
|
|
86 chr 12,12 A
|
|
87 chr 9,9,9 A
|
|
88 chr 9,9,10 A
|
|
89 chr 9,9,11 A
|
|
90 chr 9,9,12 A
|
|
91 chr 9,10,10 A
|
|
92 chr 9,10,11 A
|
|
93 chr 9,10,12 A
|
|
94 chr 9,11,11 A
|
|
95 chr 9,11,12 A
|
|
96 chr 9,12,12 A
|
|
97 chr 10,10,10 A
|
|
98 chr 10,10,11 A
|
|
99 chr 10,10,12 A
|
|
100 chr 10,11,11 A
|
|
101 chr 10,11,12 A
|
|
102 chr 10,12,12 A
|
|
103 chr 11,11,11 A
|
|
104 chr 11,11,12 A
|
|
105 chr 11,12,12 A
|
|
106 chr 12,12,12 A
|
|
107
|
|
108
|
|
109 </help>
|
|
110 </tool>
|