annotate paqmir_quantifier/quantifier.xml @ 0:bf20f97162f7 draft default tip

Uploaded
author smarthey
date Mon, 18 Mar 2019 09:36:28 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
1 <tool id="paqmir_mirdeep2_quantifier" name="PAQmiR MiRDeep2 Quantifier" version="2.1.0">
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
2 <description>fast quantitation of reads mapping to known miRBase precursors</description>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
3 <requirements>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
4 <requirement type="package" version="2.0.0.8">mirdeep2</requirement>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
5 </requirements>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
6 <stdio>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
7 <!-- Anything other than zero is an error -->
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
8 <exit_code range="1:" />
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
9 <exit_code range=":-1" />
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
10 <!-- In case the return code has not been set propery check stderr too -->
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
11 <regex match="Error:" />
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
12 <regex match="Exception:" />
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
13 </stdio>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
14 <command>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
15 <![CDATA[
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
16 #import subprocess
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
17 #set $mature_file = $subprocess.check_output(["basename",$mature.file_name])
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
18 #set $mature_file = $mature_file.rstrip()
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
19 quantifier.pl
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
20
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
21 -p $precursors
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
22
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
23 -m $mature
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
24
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
25 -r $reads
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
26
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
27 #if $species.value != 'all'
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
28 -t $species
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
29 #end if
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
30
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
31 #if $option.choice
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
32
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
33 #if $option.star_sequences
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
34 -s $option.star_sequences
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
35 #end if
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
36
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
37 $option.sortReadsInPDF
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
38 $option.flexibleIdMapping
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
39 $option.skipFileConversion
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
40 $option.wholePrecursAsMature
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
41 $option.discardReadMultiMap
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
42
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
43 -e $option.upstreamNtides
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
44 -f $option.downstreamNtides
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
45 -g $option.allowedMismatches
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
46
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
47 $option.identifiers_supv18
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
48
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
49 #end if
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
50
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
51 -y galaxy
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
52
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
53 ## html output
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
54 ;
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
55 cp expression_galaxy.html $html 2> /dev/null
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
56
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
57 ## move pdf directory to be accessible from the new index.html
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
58 ;
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
59 mkdir -p $html.files_path 2> /dev/null
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
60 ;
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
61 cp -R pdfs_galaxy $html.files_path 2> /dev/null
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
62 ;
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
63 cp expression_analyses/expression_analyses_galaxy/${mature_file}_mapped.arf expression_analyses/expression_analyses_galaxy/mature_mapped.arf
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
64 ]]>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
65 </command>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
66 <inputs>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
67 <param name="reads" format="fasta" type="data" label="Collapsed deep sequencing reads" help="Reads in fasta format. (-r)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
68 <param name="precursors" format="fasta" type="data" label="Precursor sequences" help="miRNA precursor sequences from miRBase. (-p)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
69 <param name="mature" format="fasta" type="data" label="Mature miRNA sequences" help="Mature miRNA sequences from miRBase. (-m)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
70 <param name="species" type="select" label="Search in species" help="If not searching in a specific species all species in your files will be analyzed. (-t) [ If you don't find the specie you need you can use 'All species' or contact the administrator to update the list ] ">
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
71 <option value="all">All species</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
72 <option value="hsa">Human</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
73 <option value="ptr">Chimp</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
74 <option value="na">Orangutan</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
75 <option value="na">Rhesus</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
76 <option value="na">Marmoset</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
77 <option value="mmu">Mouse</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
78 <option value="rno">Rat</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
79 <option value="na">GuineaPig</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
80 <option value="lca">Cat</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
81 <option value="cfa">Dog</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
82 <option value="eca">Horse</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
83 <option value="bta">Cow</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
84 <option value="na">Opossum</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
85 <option value="na">Platypus</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
86 <option value="gga">Chicken</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
87 <option value="na">Zebrafinch</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
88 <option value="na">Lizard</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
89 <option value="xtr">X.tropicalis</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
90 <option value="dre">Zebrafish</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
91 <option value="tni">Tetraodon</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
92 <option value="fru">Fugu</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
93 <option value="na">Stickleback</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
94 <option value="na">Medaka</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
95 <option value="na">Lamprey</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
96 <option value="bfl">Lancelet</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
97 <option value="cin">C.intestinalis</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
98 <option value="spu">S.purpuratus</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
99 <option value="cel">C.elegans</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
100 <option value="na">C.brenneri</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
101 <option value="cbr">C.briggsae</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
102 <option value="na">C.remanei</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
103 <option value="sja">C.japonica</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
104 <option value="na">P.pacificus</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
105 <option value="dme">D.melanogaster</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
106 <option value="dsi">D.simulans</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
107 <option value="dse">D.sechellia</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
108 <option value="dya">D.yakuba</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
109 <option value="der">D.erecta</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
110 <option value="dan">D.ananassae</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
111 <option value="dps">D.pseudoobscura</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
112 <option value="dpe">D.persimilis</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
113 <option value="dvi">D.virilis</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
114 <option value="dmo">D.mojavensis</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
115 <option value="dgr">D.grimshawi</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
116 <option value="aga">A.gambiae</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
117 <option value="ame">A.mellifera</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
118 <option value="na">S.cerevisiae</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
119 <option value="cel">Worm</option>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
120 </param>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
121
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
122 <conditional name="option">
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
123 <param name="choice" type="boolean" truevalue="yes" falsevalue="no" label="More options?"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
124 <when value="no">
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
125 </when>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
126 <when value="yes">
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
127 <param name="identifiers_supv18" type="boolean" truevalue="-P" falsevalue="" label="Mature miRNA reference contain miRBase v>=18 identifiers" help="Use this switch if Mature miRNA reference contain miRBase v18 (or more recent) identifiers (5p and 3p) instead of previous ids from v17. (-P)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
128 <param name="star_sequences" format="fasta" type="data" optional="true" label="Star sequences" help="From miRBase in fasta format (optional) (-s)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
129 <!-- <param name="generatePDFs" type="boolean" checked="true" truevalue="" falsevalue="-d" label="Generate PDFs" help="(-d)"/> -->
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
130 <param name="sortReadsInPDF" type="boolean" checked="true" truevalue="" falsevalue="-o" label="Sort reads by sample in PDF" help="(-o)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
131 <param name="flexibleIdMapping" type="boolean" checked="false" truevalue="-k" falsevalue="" label="Include ID-flexible mapping" help="Also considers precursor-mature mappings that have different ids, eg let7c would be allowed to map to pre-let7a. (-k)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
132 <param name="skipFileConversion" type="boolean" checked="false" truevalue="-n" falsevalue="" label="Skip file conversion" help="(-n)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
133 <param name="skipPrecursMapping" type="boolean" checked="false" truevalue="-x" falsevalue="" label="Skip mapping against precursor" help="(-x)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
134 <!-- <param name="noMrdPDF" type="boolean" checked="false" truevalue="-j" falsevalue="" label="Do not create output.mrd file or PDFs" help="(-j)"/> -->
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
135 <param name="wholePrecursAsMature" type="boolean" checked="false" truevalue="-w" falsevalue="" label="Consider the whole precursor as the 'mature sequence'" help="(-w)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
136 <param name="discardReadMultiMap" type="boolean" checked="false" truevalue="-U" falsevalue="" label="Discard all read multimapper" help="(-U)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
137
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
138 <param name="upstreamNtides" type="integer" value="2" min="0" label="Upstream nucleotides" help="Number of nucleotides upstream of the mature sequence to consider. (-e)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
139 <param name="downstreamNtides" type="integer" value="5" min="0" label="Downstream nucleotides" help="Number of nucleotides downstream of the mature sequence to consider. (-f)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
140 <param name="allowedMismatches" type="integer" value="1" min="0" label="Allowed mismatches" help="Number of allowed mismatches when mapping reads to precursors. (-g)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
141 </when>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
142 </conditional>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
143 </inputs>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
144 <outputs>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
145 <data name="miRNAsExpressed" format="tabular" from_work_dir="miRNAs_expressed_all_samples_galaxy.csv" label="output of ${tool.name} on ${on_string}"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
146 <data format="html" name="html" label="${tool.name} on ${on_string} (html report)"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
147 <data name="miRBase" format="tabular" from_work_dir="expression_analyses/expression_analyses_galaxy/miRBase.mrd" label="miRBase.mrd of ${tool.name} on ${on_string}"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
148 <data name="mature_and_new_mapped" format="tabular" from_work_dir="expression_analyses/expression_analyses_galaxy/mature_mapped.arf" label="${mature.name}_mapped.arf of ${tool.name} on ${on_string}"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
149 </outputs>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
150 <tests>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
151 <test>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
152 <param name="reads" value="reads_collapsed.fa"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
153 <param name="precursors" value="precursors_ref_this_species.fa"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
154 <param name="mature" value="mature_ref_this_species.fa"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
155 <param name="species" value="cel"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
156 <output name="miRNAsExpressed" file="miRNAs_expressed_all_samples.csv"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
157 <output name="html" file="expression_galaxy.html"/>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
158 </test>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
159 </tests>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
160 <help>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
161 <![CDATA[
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
162
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
163 | This tool is part of the workflow **PAQmiR** for the *Prediction Annotation and Quantification of miRNA with miRDeep2*
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
164 |
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
165 | *This wrapper was forked from the rbc_mirdeep2_quantifier wrapper of the RNA-Bioinformatics network*
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
166 | ==> https://www.denbi.de/network/rna-bioinformatics-center-rbc
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
167 | ==> https://github.com/bgruening
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
168 |
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
169 | Modifications are the product of Valentin Marcon & Sylvain Marthey (Thanks to INRA Migale, IFB ressources & INRA GABI)
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
170
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
171 **What it does**
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
172
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
173 | The module maps the deep sequencing reads to predefined miRNA precursors and determines by that the expression of the corresponding miRNAs.
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
174 | First, the predefined mature miRNA sequences are mapped to the predefined precursors. Optionally, predefined star sequences can be mapped to the precursors too.
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
175 | By that the mature and star sequence in the precursors are determined. Second, the deep sequencing reads are mapped to the precursors.
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
176 | The number of reads falling into an interval 2nt upstream and 5nt downstream of the mature/star sequence is determined.
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
177
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
178 **Input**
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
179
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
180 A FASTA file with precursor sequences, a FASTA file with mature miRNA sequences, a FASTA file with deep sequencing reads and optionally a FASTA file with star sequences and the 3 letter code of the species of interest.
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
181
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
182 **Output**
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
183
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
184 A tab separated file with miRNA identifiers and its read count, a signature file, a html file that gives an overview of all miRNAs the input data and a pdfs that contains for each miRNA a pdf file showing its signature and structure.
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
185
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
186 **Dependency**
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
187
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
188 MiRDeep2_ 2.0.0.8, Conda version
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
189
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
190 .. _mirdeep2: https://anaconda.org/bioconda/mirdeep2
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
191
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
192 ]]>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
193 </help>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
194 <citations>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
195 <citation type="doi">10.1093/nar/gkr688</citation>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
196 <citation type="doi">10.1002/0471250953.bi1210s36</citation>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
197 </citations>
bf20f97162f7 Uploaded
smarthey
parents:
diff changeset
198 </tool>