annotate mutspecStat.xml @ 7:eda59b985b1c draft default tip

Uploaded
author iarc
date Mon, 13 Mar 2017 08:21:19 -0400
parents 46a10309dfe2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
1 <tool id="mutSpecStat" name="MutSpec Stat" version="0.1" hidden="false">
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
2 <description>Calculate various statistics on mutations</description>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
3
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
4 <requirements>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
5 <requirement type="set_environment">SCRIPT_PATH</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
6 <requirement type="package" version="5.18.1">perl</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
7 <requirement type="package" version="3.5">weblogo</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
8 <requirement type="package" version="1.9">numpy</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
9 <requirement type="package" version="3.2.1">R</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
10 <requirement type="package" version="2.11.1">fontconfig</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
11 <requirement type="package" version="0.1">mutspec</requirement>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
12 </requirements>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
13
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
14 <command interpreter="bash">
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
15 mutspecStat_wrapper.sh
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
16 $html
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
17 ${GALAXY_DATA_INDEX_DIR}/shared/ucsc/chrom/
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
18 #if str($estimateSignature.estimSign) == "true":
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
19 ${estimateSignature.estimT}
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
20 #else
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
21 0
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
22 #end if
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
23
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
24 "--refGenome ${refGenome} --pathSeqRefGenome ${refGenome.fields.path} $pooldata $reportSample"
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
25 #import re
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
26 #for $f in $dataset_list
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
27 #set $regexp = $re.compile("\((.*)\)")
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
28 #if $regexp.search($f.name)
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
29 #set filename=$regexp.search($f.name)
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
30 "$f=${filename.group(1)}"
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
31 #else
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
32 "$f=${f.name}"
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
33 #end if
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
34 #end for
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
35 </command>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
36
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
37 <inputs>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
38 <param name="dataset_list" type="data_collection" format="tabular" collection_type="list" label="Annotated Dataset List" help="Select a dataset list/collection from your history" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
39 <param name="refGenome" type="select" label="Reference genome" help="All data in your dataset list should have been generated with the selected genome">
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
40 <options from_data_table="annovar_index" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
41 </param>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
42
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
43 <param name="pooldata" type="boolean" checked="true" truevalue="--pooldata" falsevalue="" label="Include statistics on the pooled samples" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
44 <param name="reportSample" type="boolean" checked="false" truevalue="--reportSample" falsevalue="" label="Generate one output file for each sample" help="By default, one output Excel file will be generated with statistics of each sample shown in different data sheets. Setting this option to true will generate one Excel file for each sample instead. It is recommended to use this option if your dataset list contains more than 250 files as the Excel output file may be too heavy to open easily on a computer with limited RAM"/>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
45
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
46 <conditional name="estimateSignature">
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
47 <param name="estimSign" type="boolean" checked="false" truevalue="true" label="Compute statistics for estimating the number of signatures" help="This option gererates different statistics that can be used to estimate the number of signatures to extract with NMF (this number should be used in the MutSpec-NMF tool"/>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
48 <when value="true">
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
49 <param name="estimT" type="text" value="8" label="Maximum number of signatures to compute" help="Warning: Selecting a number above 8 may not work on small datasets"/>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
50 </when>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
51 </conditional>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
52
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
53 </inputs>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
54
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
55 <outputs>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
56 <data name="html" type="data" format="html" label="mutation spectra report on ${dataset_list.name}" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
57 </outputs>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
58
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
59 <stdio>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
60 <regex match="FutureWarning" source="both" level="warning" description="FutureWarning" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
61 <regex match="Missing flag !" source="stderr" level="fatal" description="You have forgotten to specify one or more arguments" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
62 <regex match="Error" source="stderr" level="fatal" description="Read error message for more details" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
63 <regex match="Erreur" source="both" level="fatal" description="Read error message for more details" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
64 <regex match="Use of uninitialized value" source="both" level="fatal" description="Read error message for more details" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
65 <regex match="errors in some of the runs" source="both" level="fatal" description="Specify a lower maximum number of signatures to estimate" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
66 <regex match="Couldn't locate" source="both" level="fatal" description="Read error message for more details" />
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
67 </stdio>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
68
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
69 <help>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
70
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
71 **What it does**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
72
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
73 MutSpec-Stat calculates various statistics describing mutation characteristics extracted from a dataset collection, and estimate (optional) the number of signatures present in the dataset.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
74 The statistics include overall distribution of mutations, mutation distribution for single base substitutions (SBS) by functional regions, chromosomes, or in their trinucleotide sequence context (see details below).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
75
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
76 --------------------------------------------------------------------------------------------------------------------------------------------------
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
77
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
78 **Input formats**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
79
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
80 The tool accepts a dataset list
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
81
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
82 .. class:: infomark
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
83
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
84 You should thus create a dataset list even when using one file (see Galaxy help to learn `how to create a dataset list`__)
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
85
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
86 .. __: https://wiki.galaxyproject.org/Histories#Dataset_Collections
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
87
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
88 .. class:: warningmark
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
89
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
90 The input files must have been generated by the MutSpec-Annot tool (so they contain the required annotations).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
91
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
92 --------------------------------------------------------------------------------------------------------------------------------------------------
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
93
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
94 **Output**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
95
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
96 MutSpec-Stat generates an html page with links to :
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
97 - an Excel file that includes all computed statistics shown in tabular and graphical formats, for each sample (one by datasheet) and for the pooled samples (optional),
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
98 - html pages for individual sample results,
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
99 - the input matrix for the tool MutSpec-NMF,
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
100 - the result of the estimation of the number of signatures (if the option "Compute statistics for estimating the number of signatures" was selected).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
101
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
102 The following statistics are generated:
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
103
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
104 **Graph 1. SBS distribution**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
105 Proportion (percent of all SBS) of each type of single base substitution (SBS).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
106 All SBS are considered, including the ones without strand orientation annotation.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
107
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
108 **Table 1. Frequency and counts of all SBS**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
109 Values corresponding to graph 1.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
110
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
111
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
112 **Graph 2. Impact on protein sequence**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
113 Impact of all mutations (SBS and Indel) on the protein sequence based on the ExonicFunc.refGene annotation.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
114 For more details about the annotation, please visit the `Annovar web page`__
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
115
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
116 .. __: http://www.openbioinformatics.org/annovar/annovar_gene.html#output1
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
117
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
118
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
119 **Table 2. Frequency and counts of functional impacts**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
120 Values corresponding to graph 2.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
121
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
122
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
123 **Graph 3. Stranded distribution of SBS**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
124 Proportion (percent of all SBS with strand annotation) of the six substitution types on the transcribed and non-transcribed strand.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
125 Only regions with strand annotation are considered.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
126
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
127 **Table 3. Significance of the strand biases**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
128 The strand bias for each SBS type is calculated as the ratio of SBS on the non-transcribed (coding) versus the transcribed (non-coding) strand.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
129 The statistical significance of the differences between the mutational frequencies on the non-transcribed and the
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
130 transcribed strand (equal to 0.5, as expected by chance) is assessed using a chi-squared test followed by the Benjamini-
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
131 Hochberg procedure for multiple testing corrections (only samples with at least 1 mutations on the non-transcribed or on the transcribed strand are considered).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
132 Two tables are shown to display the 6 SBS types in both orientations.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
133
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
134
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
135 **Table 4. SBS distribution by functional region**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
136 Count and percentages of SBS in genomic regions based on the Func.refGene annotation.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
137
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
138
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
139 **Table 5. Strand bias by functional region**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
140 Counts of the strand bias for the 6 SBS types in different functional regions.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
141
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
142
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
143 **Table 6. SBS distribution per chromosome**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
144 Counts of SBS per chromosome for the six SBS types.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
145 The correlation between SBS counts and chromosome size is calculated using a Pearson correlation test.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
146
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
147
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
148 **Panel 1. Trinucleotide sequence context of SBS on the genomic sequence**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
149 The trinucleotide sequence context takes into consideration the flanking base in 5' and in 3' of the SBS.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
150 SBS counts and frequency data are shown as tables, heatmaps or bar graphs. The heatmap colors are scaled to the maximum value of the corresponding table. The bar graph is scaled to the maximum frequency value (total number of mutation by SBS type is shown in parenthesis).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
151
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
152
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
153
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
154 **Panel 2. Stranded analysis of trinucleotide sequence context of SBS**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
155 SBS within their trinucleotide sequence context are counted on the non-transcribed and transcribed strands of the gene region they are located in. Counts and frequencies are shown as tables or bar graphs.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
156 Only SBS with strand orientation annotation are considered in this analysis (strand annotation retrieved from RefSeq database).
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
157
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
158
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
159
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
160 --------------------------------------------------------------------------------------------------------------------------------------------------
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
161
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
162 **Contact**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
163
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
164 ardinm@fellows.iarc.fr; cahaisv@iarc.fr
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
165
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
166 --------------------------------------------------------------------------------------------------------------------------------------------------
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
167
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
168 **Code**
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
169
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
170 The source code is available on `GitHub`__
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
171
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
172 .. __: https://github.com/IARCbioinfo/mutspec.git
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
173
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
174 </help>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
175
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
176 <citations>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
177 <citation type="bibtex">
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
178 @article{ardin_mutspec:_2016,
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
179 title = {{MutSpec}: a Galaxy toolbox for streamlined analyses of somatic mutation spectra in human and mouse cancer genomes},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
180 volume = {17},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
181 issn = {1471-2105},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
182 doi = {10.1186/s12859-016-1011-z},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
183 shorttitle = {{MutSpec}},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
184 abstract = {{BACKGROUND}: The nature of somatic mutations observed in human tumors at single gene or genome-wide levels can reveal information on past carcinogenic exposures and mutational processes contributing to tumor development. While large amounts of sequencing data are being generated, the associated analysis and interpretation of mutation patterns that may reveal clues about the natural history of cancer present complex and challenging tasks that require advanced bioinformatics skills. To make such analyses accessible to a wider community of researchers with no programming expertise, we have developed within the web-based user-friendly platform Galaxy a first-of-its-kind package called {MutSpec}.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
185 {RESULTS}: {MutSpec} includes a set of tools that perform variant annotation and use advanced statistics for the identification of mutation signatures present in cancer genomes and for comparing the obtained signatures with those published in the {COSMIC} database and other sources. {MutSpec} offers an accessible framework for building reproducible analysis pipelines, integrating existing methods and scripts developed in-house with publicly available R packages. {MutSpec} may be used to analyse data from whole-exome, whole-genome or targeted sequencing experiments performed on human or mouse genomes. Results are provided in various formats including rich graphical outputs. An example is presented to illustrate the package functionalities, the straightforward workflow analysis and the richness of the statistics and publication-grade graphics produced by the tool.
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
186 {CONCLUSIONS}: {MutSpec} offers an easy-to-use graphical interface embedded in the popular Galaxy platform that can be used by researchers with limited programming or bioinformatics expertise to analyse mutation signatures present in cancer genomes. {MutSpec} can thus effectively assist in the discovery of complex mutational processes resulting from exogenous and endogenous carcinogenic insults.},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
187 pages = {170},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
188 number = {1},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
189 journaltitle = {{BMC} Bioinformatics},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
190 author = {Ardin, Maude and Cahais, Vincent and Castells, Xavier and Bouaoun, Liacine and Byrnes, Graham and Herceg, Zdenko and Zavadil, Jiri and Olivier, Magali},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
191 date = {2016},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
192 pmid = {27091472},
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
193 keywords = {Galaxy, Mutation signatures, Mutation spectra, Single base substitutions}
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
194 }
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
195 </citation>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
196 </citations>
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
197
eda59b985b1c Uploaded
iarc
parents: 6
diff changeset
198 </tool>