30
|
1 <tool id="rgTF2" name="toolfactory" version="2.00">
|
|
2 <description>Scripts into tools</description>
|
|
3 <macros>
|
|
4 <xml name="io">
|
|
5 <repeat name="history_inputs" title="Add a data file from your history to pass in to the script. Use the '+' button as needed"
|
|
6 help="USE SMALL SAMPLES because these will be used for the new tool's test. The names will become a history item selector as input for users of the new tool you are making">
|
|
7 <param name="input_files" type="data" format="data" label="Select an input file from your history" optional="true" size="120" multiple="false"
|
|
8 help=""/>
|
|
9 <param name="input_formats" type="select" multiple="true" label="Select the datatype(s) that your tool/script accepts as input"
|
|
10 help="If your datatype is not listed here, it has to be added in galaxy's datatypes_conf.xml" value="tabular">
|
|
11 <options from_parameter="tool.app.datatypes_registry.upload_file_formats">
|
|
12 <column name="value" index="0"/>
|
|
13 </options>
|
|
14 </param>
|
|
15 <param name="input_label" type="text" value="" label="This will become the user prompt for the form so please make it informative" size="60"
|
|
16 help="Note that '~~~' is an internal delimiter so must not appear in this text field - please work around this technical limitation" >
|
|
17 <sanitizer invalid_char="">
|
|
18 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
19 <mapping initial="none"/>
|
|
20 </sanitizer>
|
|
21 </param>
|
|
22 <param name="input_help" type="text" value="parameter_help" label="This will become help text on the form."
|
|
23 help="Note that three consecutive ~ cannot be used in this text field - please work around this technical limitation" size="60">
|
|
24 <sanitizer invalid_char="">
|
|
25 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
26 <mapping initial="none"/>
|
|
27 </sanitizer>
|
|
28 </param>
|
|
29 <param name="input_CL" type="text" size="60" label="Positional: ordinal integer. Argparse: argument name."
|
|
30 help="If you will pass positional parameters, enter the integer ordinal for this parameter. If Argparse style, '--' will be prepended or '-' if single character" value="">
|
|
31 </param>
|
|
32 </repeat>
|
|
33 <repeat name="history_outputs" title="Add a tool run output file to the user's history from your tool - Use the '+' button to add as many as needed"
|
|
34 help="The name will become a history item for users of the new tool you are making containing one of it's outputs">
|
|
35 <param name="history_name" type="text" label="Name for this output to appear in new history" optional="false" size="120"
|
|
36 help=""/>
|
|
37 <param name="history_format" type="select" multiple="false" label="Select the datatype for this output"
|
|
38 help="If your datatype is not listed here, it has to be added in galaxy's datatypes_conf.xml" value="tabular">
|
|
39 <options from_parameter="tool.app.datatypes_registry.upload_file_formats">
|
|
40 <column name="value" index="0"/>
|
|
41 </options>
|
|
42 </param>
|
|
43 <param name="history_CL" type="text" size="60" label="Positional: ordinal integer. Argparse: argument name expected for this output parameter"
|
|
44 help="If positional parameters, enter the integer ordinal expected for this parameter. If Argparse style, '--' will be prepended or '-' if single character" value="">
|
|
45 </param>
|
|
46 </repeat>
|
|
47 </xml>
|
|
48 <xml name="additparam">
|
|
49 <param name="edit_params" type="select" display="radio" label="Add any additional parameters to the generated tool form so they are user editable?"
|
|
50 help="If no (default), users will NOT be able to alter any additional parameters. If yes, these will appear on the tool form as text fields with no validation or sanitizing">
|
|
51 <option value="yes">Yes, allow user to edit all additional parameters on the generated tool form</option>
|
|
52 <option value="no" selected="true">No - use the fixed values for all additional parameters - no user editing</option>
|
|
53 </param>
|
|
54
|
|
55 <repeat name="additional_parameters" title="Pass additional parameters to the script"
|
|
56 help="See examples below to see how these can be parsed by scripts in the various languages">
|
|
57 <param name="param_name" type="text" value="parameter_name" label="Choose the name for this parameter" size="60">
|
|
58 <sanitizer invalid_char="">
|
|
59 <valid initial="string.letters,string.digits"/>
|
|
60 <mapping initial="none"/>
|
|
61 </sanitizer>
|
|
62 </param>
|
|
63 <param name="param_type" type="select" label="Select the type for this parameter">
|
|
64 <option value="text" selected="true">text</option>
|
|
65 <option value="integer">integer</option>
|
|
66 <option value="float">float</option>
|
|
67 </param>
|
|
68 <param name="param_value" type="text" value="" label="Enter this parameter's default value" size="60"
|
|
69 help="Note that '~~~' is an internal delimiter must not appear in this text field - please work around this technical limitation" >
|
|
70 <sanitizer invalid_char="">
|
|
71 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
72 <mapping initial="none"/>
|
|
73 </sanitizer>
|
|
74 </param>
|
|
75 <param name="param_label" type="text" value="parameter_label" label="Enter this parameter's label for the form" size="60"
|
|
76 help="Note that '~~~' is an internal delimiter so must not appear in this text field - please work around this technical limitation" >
|
|
77 <sanitizer invalid_char="">
|
|
78 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
79 <mapping initial="none"/>
|
|
80 </sanitizer>
|
|
81 </param>
|
|
82 <param name="param_help" type="text" value="parameter_help" label="Help for this parameter"
|
|
83 help="Note that three consecutive ~ cannot be used in this text field - please work around this technical limitation" size="60">
|
|
84 <sanitizer invalid_char="">
|
|
85 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
86 <mapping initial="none"/>
|
|
87 </sanitizer>
|
|
88 </param>
|
|
89 <param name="param_CL" type="text" size="60" label="Positional order (must be integer > 1) or Argument name to be prefixed with '--' or '-' if single letter"
|
|
90 help="Using positional parameters, enter the integer ordinal for this parameter on the command line. Using Argparse style, '--' will be prepended on the CL" value="">
|
|
91 </param>
|
|
92 </repeat>
|
|
93 </xml>
|
|
94 <xml name="builtin_dynpar">
|
|
95 <param name="interpreter_version" type="text" value=""
|
|
96 label="Specific interpreter version to match dependency (Conda) repositories - e.g. for python '3.8.5' Latest if empty"/>
|
|
97 <param name="exe_package_version" type="text" value=""
|
|
98 label="Executable package version to match dependency (Conda) repositories - e.g. for bwa='0.7.17'. Latest if empty"/>
|
|
99 <param name="dynScript" label="Cut and paste the script to be executed here" type="text" value="Script goes here" area="True"
|
|
100 help="If there are parameters, either positional or argparse style, the script must parse and use them appropriately">
|
|
101 <sanitizer>
|
|
102 <valid initial="string.printable">
|
|
103 </valid>
|
|
104 <mapping initial="none"/>
|
|
105 </sanitizer>
|
|
106 </param>
|
|
107 </xml>
|
|
108 <xml name="dynpar">
|
|
109 <param name="interpreter_version" type="text" value=""
|
|
110 label="Specific interpreter version to match dependency (Conda) repositories - e.g. for python '3.8.5' Latest if empty"/>
|
|
111 <param name="exe_package_version" type="text" value=""
|
|
112 label="Executable package version to match dependency (Conda) repositories - e.g. for bwa='0.7.17'. Latest if empty"/>
|
|
113 <param name="dynScript" label="Cut and paste the script to be executed here" type="text" value="Script goes here" area="True"
|
|
114 help="If there are parameters, either positional or argparse style, the script must parse and use them appropriately">
|
|
115 <sanitizer>
|
|
116 <valid initial="string.printable">
|
|
117 </valid>
|
|
118 <mapping initial="none"/>
|
|
119 </sanitizer>
|
|
120 </param>
|
|
121 </xml>
|
|
122 </macros>
|
|
123 <requirements>
|
|
124 <requirement type="package">python</requirement>
|
|
125 </requirements>
|
|
126 <command interpreter="python"><![CDATA[
|
|
127 #import os
|
|
128 #set dev_env = os.environ.get('GALAXY_DEVELOPMENT_ENVIRONMENT', '0') == '1'
|
|
129 #if not $dev_env and ( $__user_email__ not in $__admin_users__ ):
|
|
130 $__tool_directory__/rgToolFactory2.py --bad_user $__user_email__
|
|
131 #else:
|
|
132 $__tool_directory__/rgToolFactory2.py
|
|
133 --runmode "$interexe.interpreter"
|
|
134 #if str($interexe.interpreter)=="Executable" or str($interexe.interpreter)=="system":
|
|
135 --exe_package="$interexe.exe_package"
|
|
136 #if str($interexe.exe_package_version) != 'None' :
|
|
137 --exe_package_version="$interexe.exe_package_version"
|
|
138 #end if
|
|
139 #else:
|
|
140 --interpreter_name="$interexe.interpreter" --script_path "$runme"
|
|
141 #if str($interexe.interpreter_version) != 'None':
|
|
142 --interpreter_version="$interexe.interpreter_version"
|
|
143 #end if
|
|
144 #end if
|
|
145 --tool_name="$tool_name" --user_email="$__user_email__" --citations="$citeme" --parampass="$ppass.parampass"
|
|
146 #if str($makeMode.make_Tool)=="yes":
|
|
147 --make_Tool="$makeMode.make_Tool"
|
|
148 --tool_desc="$makeMode.tool_desc"
|
|
149 --tool_version="$makeMode.tool_version"
|
|
150 --help_text="$helpme"
|
|
151 --new_tool="$new_tool"
|
|
152 #end if
|
|
153 #if $ppass.parampass != '0':
|
|
154 #if str($ppass.edit_params) == "yes":
|
|
155 --edit_additional_parameters
|
|
156 #end if
|
|
157 #for apar in $ppass.additional_parameters:
|
|
158 --additional_parameters="$apar.param_name~~~$apar.param_value~~~$apar.param_label~~~$apar.param_help~~~$apar.param_type~~~$apar.param_CL"
|
|
159 #end for
|
|
160 #end if
|
|
161
|
|
162 #for $intab in $ppass.history_inputs:
|
|
163 --input_files="$intab.input_files~~~$intab.input_CL~~~$intab.input_formats~~~$intab.input_label~~~$intab.input_help"
|
|
164 #end for
|
|
165
|
|
166
|
|
167 #for $otab in $ppass.history_outputs:
|
|
168 --output_files "$otab.history_name~~~$otab.history_format~~~$otab.history_CL"
|
|
169 #end for
|
|
170 #end if
|
|
171 ]]></command>
|
|
172 <configfiles>
|
|
173 <configfile name="runme">
|
|
174
|
|
175 #if $interexe.interpreter != "Executable" and $interexe.interpreter != "system" :
|
|
176 ${interexe.dynScript}
|
|
177 #else:
|
|
178 $tool_name
|
|
179 #end if
|
|
180 </configfile>
|
|
181 <configfile name="helpme">
|
|
182 #if $makeMode.make_Tool == "yes":
|
|
183 ${makeMode.help_text}
|
|
184 #else
|
|
185 $tool_name help goes here
|
|
186 #end if
|
|
187 </configfile>
|
|
188 <configfile name="citeme">
|
|
189 #if $makeMode.make_Tool == "yes":
|
|
190 #for $citation in $makeMode.citations:
|
|
191 #if $citation.citation_type.type == "bibtex":
|
|
192 **ENTRY**bibtex
|
|
193 ${citation.citation_type.bibtex}
|
|
194 #else
|
|
195 **ENTRY**doi
|
|
196 ${citation.citation_type.doi}
|
|
197 #end if
|
|
198 #end for
|
|
199 #end if
|
|
200 </configfile>
|
|
201 </configfiles>
|
|
202 <inputs>
|
|
203
|
|
204 <param name="tool_name" type="text" value="tool1" label="New tool ID and title for outputs" size="60"
|
|
205 help="This will become the toolshed repository name so choose thoughtfully to avoid namespace clashes with other tool writers. lower case, digits and underscores only">
|
|
206 <sanitizer invalid_char="">
|
|
207 <valid initial="string.letters,string.digits">
|
|
208 <add value="_"/>
|
|
209 </valid>
|
|
210 </sanitizer>
|
|
211 </param>
|
|
212 <conditional name="interexe">
|
|
213 <param name="interpreter" type="select" label="For binaries, choose 'Executable'. Otherwise choose the interpreter for your code"
|
|
214 help = "If executable, the supplied package will become a requirement so must match the tool dependency resolver package name - conda is the default.">
|
|
215 <option value="Executable" selected="true">An executable binary to be provided and managed by the Conda dependency management subsystem</option>
|
|
216 <option value="python">python</option>
|
|
217 <option value="r-base">Rscript</option>
|
|
218 <option value="perl">perl</option>
|
|
219 <option value="bash">bash</option>
|
|
220 <option value="sh">sh</option>
|
|
221 <option value="system" >A system executable found on the path such as awk/sed</option>
|
|
222 <option value="specialtestcaseinterpreterpython" >for testing only - do not use me please</option>
|
|
223 </param>
|
|
224 <when value="Executable">
|
|
225 <param name="exe_package" type="text" value="" label="Executable package name in dependency (Conda) repositories - e.g. 'bwa'" size="60" optional="false"/>
|
|
226 <param name="exe_package_version" type="text" value="" label="Executable package version to match dependency (Conda) repositories - e.g. for bwa='0.7.17'. Latest if empty" size="60"/>
|
|
227 </when>
|
|
228 <when value="system">
|
|
229 <param name="exe_package" type="text" value="" label="System executable to run" size="60" optional="false"/>
|
|
230 <param name="exe_package_version" type="text" value=""
|
|
231 label="Executable package version to match dependency (Conda) repositories - e.g. for bwa='0.7.17'. Latest if empty"/>
|
|
232 </when>
|
|
233 <when value = "python">
|
|
234 <expand macro="dynpar" />
|
|
235 </when>
|
|
236 <when value = "r-base">
|
|
237 <expand macro="dynpar" />
|
|
238 </when>
|
|
239 <when value = "perl">
|
|
240 <expand macro="dynpar" />
|
|
241 </when>
|
|
242 <when value = "bash">
|
|
243 <expand macro="builtin_dynpar" />
|
|
244 </when>
|
|
245 <when value = "sh">
|
|
246 <expand macro="builtin_dynpar" />
|
|
247 </when>
|
|
248 <when value = "specialtestcaseinterpreterpython">
|
|
249 <expand macro="builtin_dynpar" />
|
|
250 </when>
|
|
251 </conditional>
|
|
252 <conditional name = "ppass">
|
|
253
|
|
254 <param name="parampass" type="select" display="radio" label="Command line parameter passing method to use">
|
|
255 <option value="argparse" selected="true">Argparse style: on CL in the form of --inputbam="foo.bam" if label below is "inputbam"</option>
|
|
256 <option value="positional">Positional: on CL in the order defined on this screen -> "... foo.bam bar.idx zot.xls"</option>
|
|
257 <option value="0">No parameters needed because tool reads selected history file from STDIN and writes to STDOUT for history"</option>
|
|
258 </param>
|
|
259 <when value = "argparse">
|
|
260 <expand macro="io" />
|
|
261 <expand macro="additparam" />
|
|
262 </when>
|
|
263 <when value = "positional">
|
|
264 <expand macro="io" />
|
|
265 <expand macro="additparam" />
|
|
266 </when>
|
|
267 <when value = "0">
|
|
268 <expand macro="io"/>
|
|
269 </when>
|
|
270 </conditional>
|
|
271 <conditional name="makeMode">
|
|
272 <param name="make_Tool" type="select" display="radio" label="Generate new tool as a tar.gz file ready to upload to a toolshed repository"
|
|
273 help="Generate a toolshed archive - upload to a toolshed from where it can be auto-installed via the Galaxy admin functions"
|
|
274 size="60">
|
|
275 <option value="yes">Generate a Galaxy ToolShed compatible toolshed.gz</option>
|
|
276 <option value="" selected="true">No. Just run the script please</option>
|
|
277 </param>
|
|
278 <when value = "yes">
|
|
279 <param name="tool_version" label="Tool Version - bump this to warn users trying to redo old analyses" type="text" value="0.01"
|
|
280 help="If you change your script and regenerate the 'same' tool, you should inform Galaxy (and users) by changing (bumping is traditional) this number"/>
|
|
281 <param name="tool_desc" label="Tool Description" type="text" value="" size="40"
|
|
282 help="Supply a brief tool description for the Galaxy tool menu entry (optional - appears after the tool name)" />
|
|
283 <param name="help_text" label="Tool form documentation and help text for users" type="text" area="true"
|
|
284 size="8x120" value="**What it Does**"
|
|
285 help="Supply the brief user documentation to appear on the new tool form as reStructured text - http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html" >
|
|
286 <sanitizer>
|
|
287 <valid initial="string.printable">
|
|
288 </valid>
|
|
289 <mapping initial="none"/>
|
|
290 </sanitizer>
|
|
291 </param>
|
|
292 <repeat name="citations" title="Citation">
|
|
293 <conditional name="citation_type">
|
|
294 <param name="type" type="select" display="radio" label="Citation Type">
|
|
295 <option value="doi">DOI</option>
|
|
296 <option value="bibtex">BibTeX</option>
|
|
297 </param>
|
|
298 <when value="doi">
|
|
299 <param name="doi" label="DOI" type="text" value=""
|
|
300 help="Supply a DOI (e.g. doi: 10.1111/j.1740-9713.2007.00258.x) that should be cited when this tool is used in published research." />
|
|
301 </when>
|
|
302 <when value="bibtex">
|
|
303 <param name="bibtex" label="BibTex" type="text" area="true" size="8x120"
|
|
304 help="Supply a BibTex entry that should be cited when this tool is used in published research." value="" >
|
|
305 <sanitizer>
|
|
306 <valid initial="string.printable">
|
|
307 </valid>
|
|
308 <mapping initial="none"/>
|
|
309 </sanitizer>
|
|
310 </param>
|
|
311 </when>
|
|
312 </conditional>
|
|
313 </repeat>
|
|
314 </when>
|
|
315 <when value = "">
|
|
316 </when>
|
|
317 </conditional>
|
|
318 </inputs>
|
|
319 <outputs>
|
|
320 <collection name="ToolFactory_Outputs" type="list" label="Toolfactory ${tool_name} test run outputs" >
|
|
321 <discover_datasets pattern="__name__" directory="tfout/test-data" format="txt"/>
|
|
322 </collection>
|
|
323 <data format="tgz" name="new_tool" label="${tool_name}_toolshed.tgz">
|
|
324 <filter>makeMode['make_Tool'] == "yes"</filter>
|
|
325 </data>
|
|
326 </outputs>
|
|
327 <tests>
|
|
328 <test>
|
|
329 <param name="input_files" value="input1_sample" />
|
|
330 <param name="input_CL" value="1" />
|
|
331 <param name="input_formats" value="txt" />
|
|
332 <param name="input_label" value="input" />
|
|
333 <param name="input_help" value="help" />
|
|
334 <param name="tool_name" value="pyrevpos" />
|
|
335 <param name="parampass" value="positional" />
|
|
336 <param name="make_Tool" value="yes" />
|
|
337 <param name="tool_version" value="0.01" />
|
|
338 <param name="tool_desc" value="positional reverse" />
|
|
339 <param name="help_text" value="help text goes here" />
|
|
340 <param name="interpreter" value="python"/>
|
|
341 <param name="history_name" value="output2_sample" />
|
|
342 <param name="history_format" value="txt" />
|
|
343 <param name="history_CL" value="2" />
|
|
344 <param name="runme" value="pyrevpos.python"/>
|
|
345 <output_collection name="ToolFactory_Outputs" type="list">
|
|
346 <element name="output2_sample_sample" file="output2_sample" ftype="txt" compare="diff" lines_diff = "10" />
|
|
347 </output_collection>
|
|
348 <output name="new_tool" file="toolfactory_pyrevpos_tgz_sample" compare="sim_size" delta="6000" />
|
|
349 </test>
|
|
350 </tests>
|
|
351 <help>
|
|
352
|
|
353 .. class:: warningmark
|
|
354
|
|
355 **Details and attribution**
|
|
356 (see GTF_)
|
|
357
|
|
358 **Local Admins ONLY**
|
|
359 Only users whose IDs found in the local admin_user configuration setting in universe_wsgi.ini can run this tool.
|
|
360
|
|
361 **If you find a bug**
|
|
362 Please raise an issue, or even better, submit a pull request fixing it, on the github repository GTF_
|
|
363
|
|
364 **What it does**
|
|
365 This tool optionally generates normal workflow compatible first class Galaxy tools
|
|
366
|
|
367 Generated tools can run existing binary packages that become requirements, existing scripts, or new scripts pasted into this tool form.
|
|
368 Pasted scripts are written so they are part of the new tool and cannot be adjusted by the downstream user.
|
|
369 Binary packages are managed by the dependency subsystem - conda usually, so anything in bioconda or conda_forge is available for example.
|
|
370
|
|
371 Any number of parameters can be built into the new tool form for passing in to the script or executable at runtime.
|
|
372 These can be editable by the downstream user or baked in.
|
|
373
|
|
374 When you run this tool, your executable or script and supplied parameter values will be run to produce a canonical
|
|
375 set of outputs - these are used to construct a test for the new tool.
|
|
376
|
|
377 If tool generation is required, a new tarball compatible with any Galaxy toolshed is created.
|
|
378 It can be unpacked in your galaxy/tools directory and manually added to tool_conf.xml, or
|
|
379 installed into any toolshed from where it can be installed into your Galaxy.
|
|
380
|
|
381
|
|
382 .. class:: warningmark
|
|
383
|
|
384 **Note to system administrators**
|
|
385 This tool offers *NO* built in protection against malicious scripts. It should only be installed on private/personnal Galaxy instances.
|
|
386 Admin_users will have the power to do anything they want as the Galaxy user if you install this tool.
|
|
387
|
|
388 .. class:: warningmark
|
|
389
|
|
390 **Use on public servers** is STRONGLY discouraged for obvious reasons
|
|
391
|
|
392 The tools generated by this tool will run just as securely as any other normal installed Galaxy tool but like any other new tools, should always be checked carefully before installation.
|
|
393 We recommend that you follow the good code hygiene practices associated with safe toolshed practices.
|
|
394
|
|
395 Here's a sample python script that can be cut and pasted into the tool form, suitable for positional parameter passing:
|
|
396
|
|
397 ::
|
|
398
|
|
399 # reverse order of text by row
|
|
400 import sys
|
|
401 inp = sys.argv[1]
|
|
402 outp = sys.argv[2]
|
|
403 i = open(inp,'r').readlines()
|
|
404 o = open(outp,'w')
|
|
405 for row in i:
|
|
406 rs = row.rstrip()
|
|
407 rs = list(rs)
|
|
408 rs.reverse()
|
|
409 o.write(''.join(rs))
|
|
410 o.write('\n')
|
|
411 o.close()
|
|
412
|
|
413 With argparse style parameters:
|
|
414
|
|
415 ::
|
|
416
|
|
417 # reverse order of text by row
|
|
418 import argparse
|
|
419 parser = argparse.ArgumentParser()
|
|
420 a = parser.add_argument
|
|
421 a('--infile',default='')
|
|
422 a('--outfile',default=None)
|
|
423 args = parser.parse_args()
|
|
424 inp = args.infile
|
|
425 outp = args.outfile
|
|
426 i = open(inp,'r').readlines()
|
|
427 o = open(outp,'w')
|
|
428 for row in i:
|
|
429 rs = row.rstrip()
|
|
430 rs = list(rs)
|
|
431 rs.reverse()
|
|
432 o.write(''.join(rs))
|
|
433 o.write('\n')
|
|
434 o.close()
|
|
435
|
|
436
|
|
437 Paper_ :
|
|
438
|
|
439 Creating re-usable tools from scripts: The Galaxy Tool Factory
|
|
440 Ross Lazarus; Antony Kaspi; Mark Ziemann; The Galaxy Team
|
|
441 Bioinformatics 2012; doi: 10.1093/bioinformatics/bts573
|
|
442
|
|
443 **Licensing**
|
|
444
|
|
445 Copyright Ross Lazarus (ross period lazarus at gmail period com) May 2012
|
|
446 All rights reserved.
|
|
447 Licensed under the LGPL_
|
|
448
|
|
449 .. _LGPL: http://www.gnu.org/copyleft/lesser.html
|
|
450 .. _GTF: https://github.com/fubar2/toolfactory
|
|
451 .. _Paper: http://bioinformatics.oxfordjournals.org/cgi/reprint/bts573
|
|
452
|
|
453
|
|
454 </help>
|
|
455 <citations>
|
|
456 <citation type="doi">10.1093/bioinformatics/bts573</citation>
|
|
457 </citations>
|
|
458 </tool>
|
|
459
|
|
460
|