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