annotate tools/ngs_simulation/ngs_simulation.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="ngs_simulation" name="Simulate" version="1.0.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <!--<tool id="ngs_simulation" name="Simulate" force_history_refresh="True" version="1.0.0">-->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <description>Illumina runs</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 ngs_simulation.py
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 #if $in_type.input_type == "built-in"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 --input="${ filter( lambda x: str( x[0] ) == str( $in_type.genome ), $__app__.tool_data_tables[ 'ngs_sim_fasta' ].get_fields() )[0][-1] }"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 --genome=$in_type.genome
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 #else
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 --input=$in_type.input1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 --read_len=$read_len
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 --avg_coverage=$avg_coverage
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 --error_rate=$error_rate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 --num_sims=$num_sims
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 --polymorphism=$polymorphism
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 --detection_thresh=$detection_thresh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 --output_png=$output_png
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 --summary_out=$summary_out
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 --output_summary=$output_summary
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 --new_file_path=$__new_file_path__
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <!-- If want to include all simulation results file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 sim_results=$sim_results
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 output=$output.id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <conditional name="in_type">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 <param name="input_type" type="select" label="Use a built-in FASTA file or one from the history?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 <option value="built-in">Built-in</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <option value="history">History file</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <when value="built-in">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <param name="genome" type="select" label="Select a built-in genome" help="if your genome of interest is not listed - contact Galaxy team">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 <options from_data_table="ngs_sim_fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 <when value="history">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 <param name="input1" type="data" format="fasta" label="Input genome (FASTA format)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <param name="read_len" type="integer" value="76" label="Read length" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <param name="avg_coverage" type="integer" value="200" label="Average coverage" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 <param name="error_rate" type="float" value="0.001" label="Error rate or quality score" help="Quality score if integer 1 or greater; error rate if between 0 and 1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 <param name="num_sims" type="integer" value="100" label="The number of simulations to run" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 <param name="polymorphism" type="select" multiple="true" label="Frequency/ies for minor allele">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 <option value="0.001">0.001</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 <option value="0.002">0.002</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 <option value="0.003">0.003</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 <option value="0.004">0.004</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 <option value="0.005">0.005</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 <option value="0.006">0.006</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 <option value="0.007">0.007</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 <option value="0.008">0.008</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 <option value="0.009">0.009</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 <option value="0.01">0.01</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 <option value="0.02">0.02</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 <option value="0.03">0.03</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 <option value="0.04">0.04</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 <option value="0.05">0.05</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 <option value="0.06">0.06</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 <option value="0.07">0.07</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 <option value="0.08">0.08</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 <option value="0.09">0.09</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 <option value="0.1">0.1</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 <option value="0.2">0.2</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 <option value="0.3">0.3</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 <option value="0.4">0.4</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 <option value="0.5">0.5</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 <option value="0.6">0.6</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 <option value="0.7">0.7</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 <option value="0.8">0.8</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 <option value="0.9">0.9</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 <option value="1.0">1.0</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 <param name="detection_thresh" type="select" multiple="true" label="Detection thresholds">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 <option value="0.001">0.001</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 <option value="0.002">0.002</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 <option value="0.003">0.003</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 <option value="0.004">0.004</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 <option value="0.005">0.005</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 <option value="0.006">0.006</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 <option value="0.007">0.007</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 <option value="0.008">0.008</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 <option value="0.009">0.009</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 <option value="0.01">0.01</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 <option value="0.02">0.02</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 <option value="0.03">0.03</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 <option value="0.04">0.04</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 <option value="0.05">0.05</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 <option value="0.06">0.06</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 <option value="0.07">0.07</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 <option value="0.08">0.08</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 <option value="0.09">0.09</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 <option value="0.1">0.1</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 <option value="0.2">0.2</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 <option value="0.3">0.3</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98 <option value="0.4">0.4</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 <option value="0.5">0.5</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100 <option value="0.6">0.6</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 <option value="0.7">0.7</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102 <option value="0.8">0.8</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 <option value="0.9">0.9</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104 <option value="1.0">1.0</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 <param name="summary_out" type="boolean" truevalue="true" falsevalue="false" checked="true" label="Include a (text) summary file for all the simulations" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 <!-- <param name="sim_results" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Output all tabular simulation results" help="Number of polymorphisms times number of detection thresholds"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111 <data format="png" name="output_png" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 <data format="tabular" name="output_summary">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 <filter>summary_out == True</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 <data format="tabular" name="output">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117 <filter>sim_files_out</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 Tests cannot be run because of the non-deterministic element of the simulation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 But if you run the following "tests" manually in the browser and check against
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125 the output files, they should be very similar to the listed output files.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129 <param name="input_type" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 <param name="input1" value="ngs_simulation_in1.fasta" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131 <param name="read_len" value="76" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132 <param name="avg_coverage" value="200" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 <param name="error_rate" value="0.001" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134 <param name="num_sims" value="25" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 <param name="polymorphism" value="0.02,0.04,0.1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136 <param name="detection_thresh" value="0.01,0.02" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137 <param name="summary_out" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138 <output name="output_png" file="ngs_simulation_out1.png" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139 <output name="output_summary" file="ngs_simulation_out2.tabular" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 <param name="input_type" value="built-in" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143 <param name="genome" value="pUC18" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 <param name="read_len" value="50" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145 <param name="avg_coverage" value="150" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 <param name="error_rate" value="0.005" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147 <param name="num_sims" value="25" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 <param name="polymorphism" value="0.001,0.005" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149 <param name="detection_thresh" value="0.001,0.002" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 <param name="summary_out" value="false" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151 <output name="output_png" file="ngs_simulation_out3.png" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159 This tool simulates an Illumina run and provides plots of false positives and false negatives. It allows for a range of simulation parameters to be set. Note that this simulation sets only one (randomly chosen) position in the genome as polymorphic, according to the value specified. Superimposed on this are "sequencing errors", which are uniformly (and randomly) distributed. Polymorphisms are assigned using the detection threshold, so if the detection threshold is set to the same as the minor allele frequency, the expected false negative rate is 50%.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161 **Parameter list**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163 These are the parameters that should be set for the simulation::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165 Read length (which is the same for all reads)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 Average Coverage
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 Frequency for Minor Allele
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168 Sequencing Error Rate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169 Detection Threshold
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170 Number of Simulations
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172 You also should choose to use either a built-in genome or supply your own FASTA file.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174 **Output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 There are one or two. The first is a png that contains two different plots and is always generated. The second is optional and is a text file with some summary information about the simulations that were run. Below are some example outputs for a 10-simulation run on phiX with the default settings::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 Read length 76
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179 Average coverage 200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180 Error rate/quality score 0.001
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181 Number of simulations 100
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182 Frequencies for minor allele 0.002
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183 0.004
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184 Detection thresholds 0.003
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185 0.005
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187 Include summary file Yes
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189 Plot output (png):
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191 .. image:: ./static/images/ngs_simulation.png
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193 Summary output (txt)::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195 FP FN GENOMESIZE.5386 fprate hetcol errcol
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196 Min. : 71.0 Min. :0.0 Mode:logical Min. :0.01318 Min. :0.004 Min. :0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197 1st Qu.:86.0 1st Qu.:1.0 NA's:10 1st Qu.:0.01597 1st Qu.:0.004 1st Qu.:0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198 Median :92.5 Median :1.0 NA Median :0.01717 Median :0.004 Median :0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199 Mean :93.6 Mean :0.9 NA Mean :0.01738 Mean :0.004 Mean :0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200 3rd Qu.:100.8 3rd Qu.:1.0 NA 3rd Qu.:0.01871 3rd Qu.:0.004 3rd Qu.:0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201 Max. :123.0 Max. :1.0 NA Max. :0.02284 Max. :0.004 Max. :0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203 False Positive Rate Summary
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204 0.003 0.005 0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
205 0.001 0.17711 0.10854 0.01673
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
206 0.009 0.18049 0.10791 0.01738
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
207
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
208 False Negative Rate Summary
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
209 0.003 0.005 0.007
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
210 0.001 1.0 0.8 1.0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
211 0.009 0.4 0.7 0.9
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
212
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
213
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
214 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
215 </tool>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
216
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
217