|
6
|
1 <tool id="gatk2_haplotype_caller" name="Haplotype Caller" version="@VERSION@.1">
|
|
0
|
2 <description>Call SNPs and indels simultaneously via local de-novo assembly of haplotypes in an active region</description>
|
|
|
3 <expand macro="requirements" />
|
|
6
|
4 <expand macro="version_command" />
|
|
0
|
5 <macros>
|
|
|
6 <import>gatk2_macros.xml</import>
|
|
|
7 </macros>
|
|
1
|
8 <command interpreter="python">
|
|
|
9 gatk2_wrapper.py
|
|
|
10 --stdout "${output_log}"
|
|
4
|
11 #for $i, $input_bam in enumerate( $reference_source.input_bams ):
|
|
|
12 -d "-I" "${input_bam.input_bam}" "${input_bam.input_bam.ext}" "gatk_input_${i}"
|
|
|
13 #if str( $input_bam.input_bam.metadata.bam_index ) != "None":
|
|
|
14 -d "" "${input_bam.input_bam.metadata.bam_index}" "bam_index" "gatk_input_${i}" ##hardcode galaxy ext type as bam_index
|
|
|
15 #end if
|
|
|
16 #end for
|
|
1
|
17 -p '
|
|
|
18 @JAR_PATH@
|
|
0
|
19 -T "HaplotypeCaller"
|
|
|
20 -o "${output_vcf}"
|
|
|
21
|
|
|
22 \$GATK2_SITE_OPTIONS
|
|
|
23
|
|
4
|
24 --num_cpu_threads_per_data_thread \${GALAXY_SLOTS:-4}
|
|
1
|
25
|
|
0
|
26 #if $reference_source.reference_source_selector != "history":
|
|
|
27 -R "${reference_source.ref_file.fields.path}"
|
|
|
28 #end if
|
|
|
29 #if str($input_recal) != 'None':
|
|
|
30 --BQSR "${input_recal}"
|
|
|
31 #end if
|
|
|
32 '
|
|
4
|
33 @DBSNP_OPTIONS@
|
|
6
|
34 $allow_n_cigar_reads
|
|
0
|
35 #include source=$standard_gatk_options#
|
|
|
36
|
|
|
37 ##start analysis specific options
|
|
|
38 #if $analysis_param_type.analysis_param_type_selector == "advanced":
|
|
|
39 -p '
|
|
|
40 #if $analysis_param_type.heterozygosity.__str__.strip() != '':
|
|
|
41 --heterozygosity $analysis_param_type.heterozygosity
|
|
|
42 #end if
|
|
|
43 --genotyping_mode "${analysis_param_type.genotyping_mode_type.genotyping_mode}"
|
|
|
44 #if str( $analysis_param_type.genotyping_mode_type.genotyping_mode ) == 'GENOTYPE_GIVEN_ALLELES':
|
|
|
45 --alleles "${analysis_param_type.genotyping_mode_type.input_alleles_rod}"
|
|
|
46 #end if
|
|
4
|
47 #if not $analysis_param_type.emitRefConfidence is None:
|
|
|
48 --emitRefConfidence $analysis_param_type.emitRefConfidence
|
|
0
|
49 #end if
|
|
|
50
|
|
|
51 ## files
|
|
|
52 #if str($analysis_param_type.activeRegionIn) != 'None':
|
|
|
53 --activeRegionIn "$analysis_param_type.activeRegionIn"
|
|
|
54 #end if
|
|
|
55 #if str($analysis_param_type.comp) != 'None':
|
|
|
56 --comp "$analysis_param_type.comp"
|
|
|
57 #end if
|
|
|
58 ##
|
|
|
59 #if str( $analysis_param_type.annotation ) != "None":
|
|
|
60 #for $annotation in str( $analysis_param_type.annotation.fields.gatk_value ).split( ','):
|
|
|
61 --annotation "${annotation}"
|
|
|
62 #end for
|
|
|
63 #end if
|
|
|
64 #for $additional_annotation in $analysis_param_type.additional_annotations:
|
|
|
65 --annotation "${additional_annotation.additional_annotation_name}"
|
|
|
66 #end for
|
|
|
67 #if str( $analysis_param_type.group ) != "None":
|
|
|
68 #for $group in str( $analysis_param_type.group ).split( ','):
|
|
|
69 --group "${group}"
|
|
|
70 #end for
|
|
|
71 #end if
|
|
|
72 #if str( $analysis_param_type.exclude_annotations ) != "None":
|
|
|
73 #for $annotation in str( $analysis_param_type.exclude_annotations.fields.gatk_value ).split( ','):
|
|
|
74 --excludeAnnotation "${annotation}"
|
|
|
75 #end for
|
|
|
76 #end if
|
|
|
77
|
|
|
78 ## value setings
|
|
|
79 #if $analysis_param_type.contamination_fraction_to_filter.__str__.strip() != '':
|
|
|
80 --contamination_fraction_to_filter $analysis_param_type.contamination_fraction_to_filter
|
|
|
81 #end if
|
|
|
82 #if $analysis_param_type.minPruning.__str__.strip() != '':
|
|
|
83 --minPruning $analysis_param_type.minPruning
|
|
|
84 #end if
|
|
|
85 #if $analysis_param_type.standard_min_confidence_threshold_for_calling.__str__.strip() != '':
|
|
|
86 --standard_min_confidence_threshold_for_calling $analysis_param_type.standard_min_confidence_threshold_for_calling
|
|
|
87 #end if
|
|
|
88 #if $analysis_param_type.standard_min_confidence_threshold_for_emitting.__str__.strip() != '':
|
|
|
89 --standard_min_confidence_threshold_for_emitting $analysis_param_type.standard_min_confidence_threshold_for_emitting
|
|
|
90 #end if
|
|
|
91 #if $analysis_param_type.gcpHMM.__str__.strip() != '':
|
|
|
92 --gcpHMM $analysis_param_type.gcpHMM
|
|
|
93 #end if
|
|
|
94 #if $analysis_param_type.max_alternate_alleles.__str__.strip() != '':
|
|
|
95 --max_alternate_alleles $analysis_param_type.max_alternate_alleles
|
|
|
96 #end if
|
|
|
97 ## mode selections
|
|
4
|
98
|
|
0
|
99 #if $analysis_param_type.pair_hmm_implementation.__str__ != "None" and len($analysis_param_type.pair_hmm_implementation.__str__) > 0:
|
|
|
100 --pair_hmm_implementation $analysis_param_type.pair_hmm_implementation
|
|
|
101 #end if
|
|
|
102 ## optional outputs
|
|
|
103 #if $analysis_param_type.activeRegionOut:
|
|
|
104 --activeRegionOut $active_region_out
|
|
|
105 #end if
|
|
|
106 #if $analysis_param_type.graphOutput:
|
|
|
107 --graphOutput $graph_out
|
|
|
108 #end if
|
|
|
109 ## flags
|
|
|
110 $analysis_param_type.useAllelesTrigger
|
|
|
111 $analysis_param_type.fullHaplotype
|
|
|
112 $analysis_param_type.genotypeFullActiveRegion
|
|
|
113 $analysis_param_type.debug
|
|
|
114 '
|
|
|
115 #end if
|
|
|
116 </command>
|
|
|
117 <inputs>
|
|
4
|
118 <param name="input_recal" type="data" format="gatk_report" optional="true" label="Covariates table recalibration file" help="The input covariates table file which enables on-the-fly base quality score recalibration. Enables on-the-fly recalibrate of base qualities. The covariates tables are produced by the BaseQualityScoreRecalibrator tool. Please be aware that one should only run recalibration with the covariates file created on the same input bam(s) (-BQSR,--BQSR &lt;recal_file&gt;)" />
|
|
0
|
119 <conditional name="reference_source">
|
|
|
120 <expand macro="reference_source_selector_param" />
|
|
|
121 <when value="cached">
|
|
4
|
122 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &lt;input_file&gt;">
|
|
|
123 <param name="input_bam" type="data" format="bam" label="BAM file">
|
|
|
124 <validator type="unspecified_build" />
|
|
|
125 <validator type="dataset_metadata_in_data_table" table_name="gatk2_picard_indexes" metadata_name="dbkey" metadata_column="dbkey" message="Sequences are not currently available for the specified build." /> <!-- fixme!!! this needs to be a select -->
|
|
|
126 </param>
|
|
|
127 </repeat>
|
|
0
|
128 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;" >
|
|
|
129 <options from_data_table="gatk2_picard_indexes">
|
|
4
|
130 <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...-->
|
|
0
|
131 </options>
|
|
|
132 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/>
|
|
|
133 </param>
|
|
|
134 </when>
|
|
|
135 <when value="history">
|
|
4
|
136 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &lt;input_file&gt;">
|
|
|
137 <param name="input_bam" type="data" format="bam" label="BAM file" />
|
|
|
138 </repeat>
|
|
|
139 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" />
|
|
0
|
140 </when>
|
|
|
141 </conditional>
|
|
4
|
142 <expand macro="dbsnp_param" />
|
|
6
|
143
|
|
|
144 <expand macro="allow_n_cigar_reads" />
|
|
0
|
145 <expand macro="gatk_param_type_conditional" />
|
|
|
146
|
|
|
147 <conditional name="analysis_param_type">
|
|
|
148 <param name="analysis_param_type_selector" type="select" label="Basic or Advanced Analysis options">
|
|
|
149 <option value="basic" selected="True">Basic</option>
|
|
|
150 <option value="advanced">Advanced</option>
|
|
|
151 </param>
|
|
|
152 <when value="basic">
|
|
|
153 <!-- Do nothing here -->
|
|
|
154 </when>
|
|
|
155 <when value="advanced">
|
|
|
156
|
|
|
157 <param name="activeRegionIn" type="data" format="bed,gatk_interval,picard_interval_list,vcf" optional="true" label="activeRegionIn" help="--activeRegionIn / -AR Use this interval list file as the active regions to process"/>
|
|
|
158 <param name="activeRegionOut" type="boolean" checked="False" truevalue="" falsevalue="" label="activeRegionOut" help="--activeRegionOut / -ARO Output the active region to an interval list file"/>
|
|
|
159
|
|
|
160 <param name="annotation" type="select" multiple="True" display="checkboxes" label="Annotation Types" help="-A,--annotation &lt;annotation&gt;">
|
|
|
161 <!-- load the available annotations from an external configuration file, since additional ones can be added to local installs -->
|
|
|
162 <options from_data_table="gatk2_annotations">
|
|
|
163 <filter type="multiple_splitter" column="tools_valid_for" separator=","/>
|
|
5
|
164 <filter type="static_value" value="HaplotypeCaller" column="tools_valid_for"/>
|
|
0
|
165 </options>
|
|
|
166 </param>
|
|
|
167 <repeat name="additional_annotations" title="Additional annotation" help="-A,--annotation &lt;annotation&gt;">
|
|
|
168 <param name="additional_annotation_name" type="text" value="" label="Annotation name" />
|
|
|
169 </repeat>
|
|
|
170 <!--
|
|
|
171 <conditional name="snpEff_rod_bind_type">
|
|
|
172 <param name="snpEff_rod_bind_type_selector" type="select" label="Provide a snpEff reference-ordered data file">
|
|
|
173 <option value="set_snpEff">Set snpEff</option>
|
|
|
174 <option value="exclude_snpEff" selected="True">Don't set snpEff</option>
|
|
|
175 </param>
|
|
|
176 <when value="exclude_snpEff">
|
|
|
177 </when>
|
|
|
178 <when value="set_snpEff">
|
|
|
179 <param name="snpEff_input_rod" type="data" format="vcf" label="ROD file" />
|
|
|
180 <param name="snpEff_rod_name" type="hidden" value="snpEff" label="ROD Name"/>
|
|
|
181 </when>
|
|
|
182 </conditional>
|
|
|
183 -->
|
|
|
184 <param name="group" type="select" multiple="True" display="checkboxes" label="Annotation Interfaces/Groups" help="-G,--group &lt;group&gt;">
|
|
|
185 <option value="RodRequiringAnnotation">RodRequiringAnnotation</option>
|
|
|
186 <option value="Standard">Standard</option>
|
|
|
187 <option value="Experimental">Experimental</option>
|
|
|
188 <option value="WorkInProgress">WorkInProgress</option>
|
|
|
189 <option value="RankSumTest">RankSumTest</option>
|
|
|
190 <!-- <option value="none">none</option> -->
|
|
|
191 </param>
|
|
|
192 <!-- <param name="family_string" type="text" value="" label="Family String"/> -->
|
|
|
193 <param name="exclude_annotations" type="select" multiple="True" display="checkboxes" label="Annotations to exclude" help="-XA,--excludeAnnotation &lt;excludeAnnotation&gt;" >
|
|
|
194 <!-- load the available annotations from an external configuration file, since additional ones can be added to local installs -->
|
|
|
195 <options from_data_table="gatk2_annotations">
|
|
|
196 <filter type="multiple_splitter" column="tools_valid_for" separator=","/>
|
|
5
|
197 <filter type="static_value" value="HaplotypeCaller" column="tools_valid_for"/>
|
|
0
|
198 </options>
|
|
|
199 </param>
|
|
|
200
|
|
|
201 <param name="comp" type="data" format="vcf" optional="true" label="comp" help="--comp / -comp comparison VCF file"/>
|
|
|
202 <param name="contamination_fraction_to_filter" type="float" value="0.05" optional="true" label="contamination_fraction_to_filter" help="--contamination_fraction_to_filter / -contamination Fraction of contamination in sequencing data (for all samples) to aggressively remove">
|
|
|
203 <validator type="in_range" message="value between 0.00 and 1.00" min="0" max="1"/>
|
|
|
204 </param>
|
|
|
205 <param name="debug" type="boolean" checked="False" truevalue="-debug" falsevalue="" label="debug" help="--debug / -debug If specified, print out very verbose debug information about each triggering active region"/>
|
|
|
206
|
|
|
207 <conditional name="genotyping_mode_type">
|
|
|
208 <param name="genotyping_mode" type="select" label="How to determine the alternate allele to use for genotyping" help="-gt_mode,--genotyping_mode &lt;genotyping_mode&gt;">
|
|
|
209 <option value="DISCOVERY" selected="True">DISCOVERY</option>
|
|
|
210 <option value="GENOTYPE_GIVEN_ALLELES">GENOTYPE_GIVEN_ALLELES</option>
|
|
|
211 </param>
|
|
|
212 <when value="DISCOVERY">
|
|
|
213 <!-- Do nothing here -->
|
|
|
214 </when>
|
|
|
215 <when value="GENOTYPE_GIVEN_ALLELES">
|
|
|
216 <param name="input_alleles_rod" type="data" format="vcf" label="Alleles ROD file" help="-alleles,--alleles &lt;alleles&gt;" />
|
|
|
217 </when>
|
|
|
218 </conditional>
|
|
|
219
|
|
|
220
|
|
|
221 <param name="graphOutput" type="boolean" checked="False" truevalue="" falsevalue="" label="graphOutput" help="--graphOutput / -graph File to which debug assembly graph information should be written"/>
|
|
|
222 <param name="heterozygosity" type="float" value="0.0010" optional="true" label="heterozygosity" help="--heterozygosity / -hets Heterozygosity value used to compute prior likelihoods for any locus"/>
|
|
|
223 <param name="minPruning" type="integer" value="1" optional="true" label="minPruning" help="--minPruning / -minPruning The minimum allowed pruning factor in assembly graph. Paths with >= X supporting kmers are pruned from the graph">
|
|
|
224 <validator type="in_range" message="value between 0 and 127" min="0" max="127"/>
|
|
|
225 </param>
|
|
4
|
226 <!-- http://www.broadinstitute.org/gatk/guide/article?id=2940 -->
|
|
|
227 <param name="emitRefConfidence" type="select" optional="true" label="Output confidence estimates" help="Emitting a per-bp or summarized confidence estimate for a site being strictly homozygous-reference (--emitRefConfidence)">
|
|
|
228 <option value="NONE" selected="True">don't emit anything</option>
|
|
|
229 <option value="BP_RESOLUTION">BP_RESOLUTION (emit detailed information for each BP)</option>
|
|
|
230 <option value="GVCF">GVCF (emit a block summarized version of the BP_RESOLUTION data)</option>
|
|
0
|
231 </param>
|
|
|
232 <param name="pair_hmm_implementation" type="select" optional="true" label="pair_hmm_implementation" help="--pair_hmm_implementation / -pairHMM The PairHMM implementation to use for genotype likelihood calculations">
|
|
|
233 <option value="EXACT">EXACT</option>
|
|
|
234 <option value="ORIGINAL">ORIGINAL</option>
|
|
|
235 <option value="CACHING">CACHING</option>
|
|
|
236 <option value="LOGLESS_CACHING" selected="True">LOGLESS_CACHING</option>
|
|
|
237 </param>
|
|
|
238 <param name="standard_min_confidence_threshold_for_calling" type="float" value="30.0" optional="true" label="standard_min_confidence_threshold_for_calling" help="--standard_min_confidence_threshold_for_calling / -stand_call_conf The minimum phred-scaled confidence threshold at which variants should be called"/>
|
|
|
239 <param name="standard_min_confidence_threshold_for_emitting" type="float" value="30.0" optional="true" label="standard_min_confidence_threshold_for_emitting" help="--standard_min_confidence_threshold_for_emitting / -stand_emit_conf The minimum phred-scaled confidence threshold at which variants should be emitted (and filtered with LowQual if less than the calling threshold)"/>
|
|
|
240 <param name="useAllelesTrigger" type="boolean" checked="False" truevalue="-allelesTrigger" falsevalue="" label="useAllelesTrigger" help="--useAllelesTrigger / -allelesTrigger If specified, use additional trigger on variants found in an external alleles file"/>
|
|
|
241 <param name="fullHaplotype" type="boolean" checked="False" truevalue="-fullHaplotype" falsevalue="" label="fullHaplotype" help="--fullHaplotype / -fullHaplotype If specified, output the full haplotype sequence instead of converting to individual variants w.r.t. the reference"/>
|
|
|
242 <param name="gcpHMM" type="integer" value="10" optional="true" label="gcpHMM" help="--gcpHMM / -gcpHMM Flat gap continuation penalty for use in the Pair HMM"/>
|
|
|
243 <param name="genotypeFullActiveRegion" type="boolean" checked="False" truevalue="-genotypeFullActiveRegion" falsevalue="" label="genotypeFullActiveRegion" help="--genotypeFullActiveRegion / -genotypeFullActiveRegion If specified, alternate alleles are considered to be the full active region for the purposes of genotyping"/>
|
|
|
244 <param name="max_alternate_alleles" type="integer" value="6" optional="true" label="max_alternate_alleles" help="--max_alternate_alleles / -maxAltAlleles Maximum number of alternate alleles to genotype"/>
|
|
|
245 </when>
|
|
|
246 </conditional>
|
|
|
247 </inputs>
|
|
|
248 <outputs>
|
|
|
249 <data format="vcf" name="output_vcf" label="${tool.name} on ${on_string} (VCF)" />
|
|
|
250 <data format="vcf" name="graph_out" label="${tool.name} on ${on_string} graph" >
|
|
|
251 <filter>analysis_param_type['analysis_param_type_selector'] == "advanced" and analysis_param_type['graphOutput'] == True</filter>
|
|
|
252 </data>
|
|
|
253 <data format="vcf" name="active_region_out" label="${tool.name} on ${on_string} activeRegion" >
|
|
|
254 <filter>analysis_param_type['analysis_param_type_selector'] == "advanced" and analysis_param_type['activeRegionOut'] == True</filter>
|
|
|
255 </data>
|
|
|
256 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" />
|
|
|
257 </outputs>
|
|
|
258 <tests>
|
|
|
259 <test>
|
|
|
260 <param name="input_recal" value="gatk/gatk_count_covariates/gatk_count_covariates_out_1.csv" ftype="csv" />
|
|
|
261 <param name="reference_source_selector" value="history" />
|
|
|
262 <param name="ref_file" value="phiX.fasta" ftype="fasta" />
|
|
|
263 <param name="input_bam" value="gatk/gatk_indel_realigner/gatk_indel_realigner_out_1.bam" ftype="bam" />
|
|
|
264 <param name="gatk_param_type_selector" value="basic" />
|
|
|
265 <param name="analysis_param_type_selector" value="basic" />
|
|
|
266 <output name="output_bam" file="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.bam" ftype="bam" lines_diff="4" />
|
|
|
267 <output name="output_log" file="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.log.contains" compare="contains" />
|
|
|
268 </test>
|
|
|
269 </tests>
|
|
|
270 <help>
|
|
|
271 **What it does**
|
|
|
272
|
|
|
273 **HaplotypeCaller**
|
|
|
274 calls SNPs and indels simultaneously via local de-novo assembly of haplotypes in an active region.
|
|
|
275 Haplotypes are evaluated using an affine gap penalty Pair HMM.
|
|
|
276
|
|
|
277 For more information on using read based compression in the GATK, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_haplotypecaller_HaplotypeCaller.html>`_.
|
|
|
278
|
|
|
279 To learn about best practices for variant detection using GATK, see this `overview <http://www.broadinstitute.org/gatk/guide/topic?name=best-practices>`_.
|
|
|
280
|
|
|
281 If you encounter errors, please view the `GATK FAQ <http://www.broadinstitute.org/gatk/guide/topic?name=faqs>`_.
|
|
|
282
|
|
|
283 ------
|
|
|
284
|
|
|
285 **Inputs**
|
|
|
286
|
|
|
287 GenomeAnalysisTK: PrintReads accepts aligned BAM files.
|
|
|
288
|
|
|
289
|
|
|
290 **Outputs**
|
|
|
291
|
|
|
292 The output is a VCF file with raw, unrecalibrated SNP and indel calls.
|
|
|
293
|
|
|
294
|
|
|
295 Go `here <http://www.broadinstitute.org/gatk/guide/topic?name=intro>`_ for details on GATK file formats.
|
|
|
296
|
|
|
297 -------
|
|
|
298
|
|
|
299 **Settings**::
|
|
|
300
|
|
|
301 activeRegionIn Use this interval list file as the active regions to process
|
|
|
302 activeRegionOut Output the active region to this interval list file
|
|
|
303 alleles The set of alleles at which to genotype when --genotyping_mode is GENOTYPE_GIVEN_ALLELES
|
|
|
304 annotation One or more specific annotations to apply to variant calls
|
|
|
305 comp comparison VCF file
|
|
|
306 contamination Fraction of contamination in sequencing data (for all samples) to aggressively remove
|
|
|
307 dbsnp dbSNP file
|
|
|
308 debug If specified, print out very verbose debug information about each triggering active region
|
|
|
309 excludeAnnotation One or more specific annotations to exclude
|
|
|
310 genotyping_mode Specifies how to determine the alternate alleles to use for genotyping
|
|
|
311 graphOutput File to which debug assembly graph information should be written
|
|
|
312 group One or more classes/groups of annotations to apply to variant calls
|
|
|
313 heterozygosity Heterozygosity value used to compute prior likelihoods for any locus
|
|
|
314 minPruning The minimum allowed pruning factor in assembly graph. Paths with less than or equal supporting kmers are pruned from the graph
|
|
|
315 pair_hmm_implementation The PairHMM implementation to use for genotype likelihood calculations
|
|
|
316 stand_call_conf The minimum phred-scaled confidence threshold at which variants should be called
|
|
|
317 stand_emit_conf The minimum phred-scaled confidence threshold at which variants should be emitted (and filtered with LowQual if less than the calling threshold)
|
|
|
318 useAllelesTrigger If specified, use additional trigger on variants found in an external alleles file
|
|
|
319 fullHaplotype If specified, output the full haplotype sequence instead of converting to individual variants w.r.t. the reference
|
|
|
320 gcpHMM Flat gap continuation penalty for use in the Pair HMM
|
|
|
321 genotypeFullActiveRegion If specified, alternate alleles are considered to be the full active region for the purposes of genotyping
|
|
|
322 max_alternate_alleles Maximum number of alternate alleles to genotype
|
|
|
323
|
|
|
324 @CITATION_SECTION@
|
|
|
325 </help>
|
|
6
|
326 <expand macro="citations" />
|
|
0
|
327 </tool>
|