comparison toolfactory/rgToolFactory2.xml @ 0:fc50a3f507ab draft

Need a new repo - old tool_factory_2 is broken
author fubar
date Sat, 10 Apr 2021 02:16:35 +0000
parents
children 48458b0369aa
comparison
equal deleted inserted replaced
-1:000000000000 0:fc50a3f507ab
1 <tool id="rgtf2" name="toolfactory" version="2.00" profile="16.04" >
2 <description>Scripts into tools v2.0</description>
3 <macros>
4 <xml name="singleText">
5 <param name="param_value" type="text" value="" label="Enter this parameter's default text value">
6 </param>
7 </xml>
8 <xml name="singleInt">
9 <param name="param_value" type="integer" value="" label="Enter this parameter's default integer value" >
10 </param>
11 </xml>
12 <xml name="singleFloat">
13 <param name="param_value" type="float" value="" label="Enter this parameter's default value">
14 </param>
15 </xml>
16 <xml name="singleBoolean">
17 <param name="param_value" type="boolean" value="" label="Enter this parameter's default value" />
18 <param name="truevalue" type="text" value="True" label="Command line value to emit when True" />
19 <param name="falsevalue" type="boolean" value="True" label="Command line value to emit when False" />
20 </xml>
21 <xml name="selectText">
22 <repeat name="selectTexts" title="Add each option to be presented in a text select box" min="2" default="2"
23 help="Each text added here will also have a value to be emitted on the command line when the text is chosen">
24 <param name="select_text" type="text" value="" label="Enter the explanatory text the user will see for this choice" >
25 </param>
26 <param name="select_value" type="text" value="" label="Enter the value for the command line when the user selects this option">
27 </param>
28 </repeat>
29 </xml>
30 <xml name="tool_metadata">
31 <param name="tool_version" label="Tool Version - bump this to warn users trying to redo old analyses" type="text" value="0.01"
32 help="If you change your script and regenerate the 'same' tool, you should inform Galaxy (and users) by changing (bumping is traditional) this number"/>
33 <param name="tool_desc" label="Tool Synopsis" type="text" value=""
34 help="Supply a brief tool description for the Galaxy tool menu entry" />
35 <param name="help_text" label="Tool form documentation and help text for users" type="text" area="true"
36 value="**What it Does**"
37 help="Supply user documentation to appear on the new tool form as reStructured text - http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html" >
38 <sanitizer>
39 <valid initial="string.printable" />
40 <mapping initial="none"/>
41 </sanitizer>
42 </param>
43 <repeat name="citations" title="Citation">
44 <conditional name="citation_type">
45 <param name="type" type="select" display="radio" label="Citation Type">
46 <option value="doi">DOI</option>
47 <option value="bibtex">BibTeX</option>
48 </param>
49 <when value="doi">
50 <param name="doi" label="DOI" type="text" value=""
51 help="Supply a DOI (e.g. doi: 10.1111/j.1740-9713.2007.00258.x) to be cited when this tool is used in published research." />
52 </when>
53 <when value="bibtex">
54 <param name="bibtex" label="BibTex" type="text" area="true"
55 help="Supply a BibTex entry that should be cited when this tool is used in published research." value="" >
56 <sanitizer>
57 <valid initial="string.printable" />
58 <mapping initial="none"/>
59 </sanitizer>
60 </param>
61 </when>
62 </conditional>
63 </repeat>
64 </xml>
65 <xml name="io">
66 <section name="io" title="Input and output files" expanded="true">
67 <repeat name="history_inputs" title="zero or more input data files to pass on the command line to the executable."
68 help="USE SMALL SAMPLES for the new tool's test. Prompts will form a history item selector as input for users of this new tool">
69 <param name="input_files" type="data" format="data" label="Select an input file from your history" multiple="false"
70 help=""/>
71 <param name="input_formats" type="select" multiple="true" label="Select the datatype(s) that your tool/script accepts as input"
72 help="If your datatype is not listed here, it has to be added in galaxy's datatypes_conf.xml" value="tabular">
73 <options from_parameter="tool.app.datatypes_registry.upload_file_formats">
74 <column name="value" index="0"/>
75 </options>
76 </param>
77 <param name="input_label" type="text" value="" label="This will become the user prompt for the form so please make it informative" >
78 </param>
79 <param name="input_help" type="text" value="" label="This will become help text on the form." >
80 </param>
81 <param name="input_CL" type="text" label="Positional: ordinal integer. Argparse: argument name. STDIN if the executable/script expects it"
82 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="">
83 </param>
84 <param name="input_repeat" type="boolean" checked="False" truevalue="1" falsevalue="0" label="Allow user to repeat this input as many times as wanted - script/executable must parse these."/>
85 </repeat>
86 <repeat name="history_outputs" title="one or more new history items output by the executable to appear in the user history after the tool runs"
87 help="The name will become a history item for users of the new tool you are making containing one of it's outputs">
88 <param name="history_name" type="text" label="Name for this output to appear in new history" optional="false"
89 help="No spaces! Argparse will also use this name as --[name]">
90 <sanitizer invalid_char="_">
91 <valid initial="string.ascii_letters,string.digits" >
92 <add value="_" />
93 </valid>
94 </sanitizer>
95 </param>
96 <param name="history_format" type="select" multiple="false" label="Select the datatype for this output"
97 help="If your datatype is not listed here, it has to be added in galaxy's datatypes_conf.xml" value="tabular">
98 <options from_parameter="tool.app.datatypes_registry.upload_file_formats">
99 <column name="value" index="0"/>
100 </options>
101 </param>
102 <param name="history_CL" type="text" label="Positional: ordinal integer. Use STDOUT if '>' required. Otherwise ignored if argparse because name is used"
103 help="If positional parameters, enter the integer ordinal expected for this parameter. If argparse, ignore unless STDOUT needed" value=""/>
104 <param name="history_test" type="text" label="Test pass decision criterion for this output compared to test generation"
105 help="Available options are diff:[lines], sim_size:[delta (integer) or delta_frac (float)" value="diff:0"/>
106 </repeat>
107 <repeat name="collection_outputs" title="zero or more new history collections to appear in the user history after the tool runs"
108 help="Hides outputs not needed for downstream tools such as images and intermediate reports." default="0">
109 <param name="name" type="text" label="Name for new collection with all outputs not individually passed to history outputs"
110 help="No spaces! Script MUST create and fill a directory with the same name and the tool test MUST be overwritten - see the plotter example for hints">
111 <sanitizer invalid_char="_">
112 <valid initial="string.ascii_letters,string.digits" >
113 <add value="_" />
114 </valid>
115 </sanitizer>
116 </param>
117 <param name="kind" type="select" multiple="false" label="Select the kind of collection for this output"
118 help="">
119 <option value="list" selected="true">List</option>
120 <option value="paired">Paired</option>
121 <option value="list:paired">List of paired</option>
122 </param>
123 <param name="label" type="text" label="Label for this collection" help="" value=""/>
124 <param name="discover" type="text" label="Discover datasets expression" help="__name_and_ext__ should catch all filenames with extensions" value="__name_and_ext__"/>
125 </repeat>
126
127 </section>
128 </xml>
129 <xml name="additparam">
130 <section name="addparam" title="Executable or script settings passed on the command line other than I/O files" expanded="true">
131 <param name="edit_params" type="select" display="radio" label="Make these settings on the generated tool form user editable?"
132 help="If no, 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">
133 <option value="yes" selected="true">Yes, allow user to edit all additional parameters on the generated tool form</option>
134 <option value="no">No - use the fixed values for all additional parameters - no user editing</option>
135 </param>
136 <repeat name="additional_parameters" title="zero or more command line settings for the user to pass to the executable"
137 help="See examples below to see how these can be parsed by scripts in the various languages">
138 <param name="param_name" type="text" value="" label="Choose the name for this parameter - MUST not be blank!">
139 <sanitizer invalid_char="">
140 <valid initial="string.ascii_letters,string.digits"/>
141 <mapping initial="none"/>
142 </sanitizer>
143 </param>
144 <conditional name="ap_type">
145 <param name="param_type" type="select" label="Select the type for this parameter">
146 <option value="text" selected="true">Text string</option>
147 <option value="integer">Integer</option>
148 <option value="float">Float</option>
149 <option value="boolean">Boolean</option>
150 <option value="selecttext">Select text string</option>
151 </param>
152 <when value = "text">
153 <expand macro="singleText" />
154 </when>
155 <when value = "integer">
156 <expand macro="singleInt" />
157 </when>
158 <when value = "float">
159 <expand macro="singleFloat" />
160 </when>
161 <when value = "boolean">
162 <expand macro="singleBoolean" />
163 </when>
164 <when value = "selecttext">
165 <expand macro="selectText" />
166 </when>
167 </conditional>
168 <param name="param_label" type="text" value="" label="Enter this parameter's label for the form">
169 </param>
170 <param name="param_help" type="text" value="" label="Help for this parameter">
171 </param>
172 <param name="param_CL" type="text" label="Positional ordinal | argparse argument name"
173 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="" />
174 <param name="param_CLprefixed" type="text" label="Override the generated default argparse name prefix if not empty - eg ----foo if needed"
175 help="Some targets like Planemo expect an unadorned action like 'test' before --galaxy_root." value="" />
176 <param name="param_repeat" type="boolean" checked="False" truevalue="1" falsevalue="0" label="Allow user to repeat this as many times as needed." />
177 </repeat>
178 </section>
179 </xml>
180 </macros>
181
182 <requirements>
183 <requirement type="package" version="0.4.13">galaxyxml</requirement>
184 <requirement type="package" version="0.14.0">bioblend</requirement>
185 <requirement type="package" version="0.10.6">ephemeris</requirement>
186 <requirement type="package" version="0.74.3">planemo</requirement>
187 </requirements>
188
189 <command ><![CDATA[
190 #import os
191 #set dev_env = os.environ.get('GALAXY_DEVELOPMENT_ENVIRONMENT', '0') == '1'
192 #if not $dev_env and ( $__user_email__ not in $__admin_users__ ):
193 python3 $__tool_directory__/rgToolFactory2.py --bad_user $__user_email__
194 #else:
195 python3 $__tool_directory__/rgToolFactory2.py
196 #if len(str($cl_suffix)) > 0:
197 --cl_suffix "$cl_suffix"
198 #end if
199 #if $cover.commover == "yes":
200 #if len(str($cover.command_override)) > 10:
201 --command_override "$commandoverride"
202 #end if
203 #if len(str($cover.test_override)) > 10:
204 --test_override "$testoverride"
205 #end if
206 #end if
207 --packages "$deps.packages"
208 #if $deps.usescript.choosescript == "yes":
209 --script_path "$runme"
210 --sysexe "$deps.usescript.scriptrunner"
211 #end if
212 --tool_name "$tool_name" --user_email "$__user_email__" --citations "$citeme" --parampass "$io_param.ppass.parampass"
213
214 #if str($make.makeMode.make_Tool)!="runonly":
215 --make_Tool "$make.makeMode.make_Tool"
216 --tool_desc "$make.makeMode.tool_desc"
217 --tool_version "$make.makeMode.tool_version"
218 --help_text "$helpme"
219 --new_tool "$new_tool"
220 --toolshed_api_key "$make.makeMode.toolshed_apikey"
221 --galaxy_api_key "$make.makeMode.galaxy_apikey"
222 --toolshed_url "$make.makeMode.toolshed_url"
223 --galaxy_url "$make.makeMode.galaxy_url"
224 #end if
225 #if $io_param.ppass.parampass != '0':
226 #if str($io_param.ppass.addparam.edit_params) == "yes":
227 --edit_additional_parameters
228 #end if
229 #for $apar in $io_param.ppass.addparam.additional_parameters:
230 #if $apar.ap_type.param_type=="selecttext":
231 --selecttext_parameters '{"name":"$apar.param_name", "label":"$apar.param_label", "help":"$apar.param_help",
232 "type":"$apar.ap_type.param_type","CL":"$apar.param_CL","override":"$apar.param_CLprefixed","value": [
233 #for $i,$st in enumerate($apar.ap_type.selectTexts):
234 "$st.select_value"
235 #if ($i < (len($apar.ap_type.selectTexts)-1)):
236 ,
237 #end if
238 #end for
239 ], "texts": [
240 #for $i,$st in enumerate($apar.ap_type.selectTexts):
241 "$st.select_text"
242 #if ($i < (len($apar.ap_type.selectTexts)-1)):
243 ,
244 #end if
245
246 #end for
247 ]
248 }'
249 #else:
250 --additional_parameters '{"name": "$apar.param_name", "value": "$apar.ap_type.param_value", "label": "$apar.param_label", "help": "$apar.param_help",
251 "type": "$apar.ap_type.param_type","CL": "$apar.param_CL","override": "$apar.param_CLprefixed", "repeat": "$apar.param_repeat"}'
252 #end if
253 #end for
254 #end if
255 #for $intab in $io_param.ppass.io.history_inputs:
256 --input_files '{"name": "$intab.input_files", "CL": "$intab.input_CL", "format": "$intab.input_formats", "label": "$intab.input_label", "help": "$intab.input_help", "repeat": "$intab.input_repeat"}'
257 #end for
258 #for $otab in $io_param.ppass.io.history_outputs:
259 --output_files '{"name": "$otab.history_name", "format": "$otab.history_format", "CL": "$otab.history_CL", "test": "$otab.history_test"}'
260 #end for
261 #for $collect in $io_param.ppass.io.collection_outputs:
262 --collection '{"name": "$collect.name", "kind": "$collect.kind", "discover": "$collect.discover", "label": "$collect.label"}'
263 #end for
264 --galaxy_root "$__root_dir__"
265 --tool_dir "$__tool_directory__"
266 #end if
267 ]]></command>
268 <configfiles>
269 <configfile name="runme">
270 $deps.usescript.dynScript
271 </configfile>
272 <configfile name="commandoverride">
273 #if $cover.commover == "yes" and len(str($cover.command_override).strip()) > 1:
274 $cover.command_override
275 #end if
276 </configfile>
277 <configfile name="testoverride">
278 #if $cover.commover == "yes" and len(str($cover.test_override).strip()) > 1:
279 $cover.test_override
280 #end if
281 </configfile>
282 <configfile name="helpme">
283 #if $make.makeMode.make_Tool != "runonly":
284 ${make.makeMode.help_text}
285 #else
286 $tool_name help goes here
287 #end if
288 </configfile>
289 <configfile name="citeme">
290 #if $make.makeMode.make_Tool != "runonly":
291 #for $citation in $make.makeMode.citations:
292 #if $citation.citation_type.type == "bibtex":
293 **ENTRY**bibtex
294 ${citation.citation_type.bibtex}
295 #else
296 **ENTRY**doi
297 ${citation.citation_type.doi}
298 #end if
299 #end for
300 #end if
301 </configfile>
302 </configfiles>
303 <inputs>
304 <param name="tool_name" type="text" value="tool1" label="New tool ID and title for outputs"
305 help="Toolshed repository name. Choose thoughtfully to avoid namespace clashes with other tool writers. Lower case, digits and underscores only">
306 <sanitizer invalid_char="">
307 <valid initial="string.ascii_lowercase,string.digits">
308 <add value="_"/>
309 </valid>
310 </sanitizer>
311 </param>
312
313 <section name="deps" title="Dependencies, optional script and script interpreter" expanded="true">
314
315 <param name="packages" type="text" value="" label="Conda dependencies as package name[:version, name:version...]. These will always be available when this tool executes"
316 help="Use =[ver] or :[ver] for specific version - 'bwa=0.17.0'. Default is latest. Will be used every time the tool is (re)run. Only Conda is currently supported" />
317
318 <conditional name="usescript">
319 <param name="choosescript" type="select" display="radio" label="Supply a script for a dependency (e.g. python/R/bash) or a system executable such as Bash"
320 help = "For script interpreters like Python or bash, parameters and i/o specified below must match script's expectations - if you pass parameters, the script must deal with them">
321 <option value="no">No script required for this tool - just pass parameters on the command line to the first dependency listed above</option>
322 <option value="yes" selected="true">Yes, a script is ready to be pasted below</option>
323 </param>
324 <when value="no">
325 <param name="dynScript" type="hidden" value="" />
326 <param name="scriptrunner" type="hidden" value="" />
327 </when>
328 <when value="yes">
329 <param name="scriptrunner" type="text" value="" label="Interpreter for the script - eg bash or python. Can be one of the dependencies named above or a system executable"
330 help="Scripts are interpreted by the executable named here. For conda r-base, 'Rscript --vanilla' or for conda planemo, 'planemo test' for example">
331 </param>
332 <param name="dynScript" type="text" area="True" value="" label="Script for executable above to interpret. It can be one of the Conda dependency names "
333 help="Script must handle all i/o and parameters as specified below using the parameters and passing method chosen below">
334 <sanitizer>
335 <valid initial="string.printable"/>
336 <mapping initial="none"/>
337 </sanitizer>
338 </param>
339 </when>
340 </conditional>
341 </section>
342 <section name="io_param" title="Data file input, output and settings forming the executable or script command line" expanded="true">
343 <conditional name="ppass">
344 <param name="parampass" type="select" display="radio" label="Command line parameter passing method to use">
345 <option value="argparse" selected="true">Argparse: passed in the form of --clname value</option>
346 <option value="positional">Positional: Passed in the order of positional ordinals ...foo.bam bar.idx zot.xls</option>
347 <option value="0">Tool reads selected input file from STDIN and writes STDOUT with no parameters</option>
348 </param>
349 <when value="argparse">
350 <expand macro="io" />
351 <expand macro="additparam" />
352 </when>
353 <when value="positional">
354 <expand macro="io" />
355 <expand macro="additparam" />
356 </when>
357 <when value="0">
358 <expand macro="io"/>
359 </when>
360 </conditional>
361 </section>
362 <param name="cl_suffix" type="text" value="" label="Suffix for generated command line. Useful for bash post processing. Use override below to replace completely"
363 help="';' separated bash commands can be used here for post processing - added at end of autogenerated command line">
364 <sanitizer>
365 <valid initial="string.printable" />
366 <mapping initial="none"/>
367 </sanitizer>
368 </param>
369 <conditional name="cover">
370 <param name="commover" type="select" display="radio" label="Add Human wrought code to override the generated XML command and/or test section - DIY"
371 help = "For arbitrary and artfull command lines. All i/o and parameters must be passed. Choose No unless needed. Not for the faint of heart">
372 <option value="no" selected="true">No. Use automatically generated command/test XML </option>
373 <option value="yes">Yes. XML needed to override autogenerated command and/or test segments will be pasted below</option>
374 </param>
375 <when value="no">
376 <param name="command_override" type="hidden" value="" />
377 <param name="test_override" type="hidden" value="" />
378 </when>
379 <when value="yes">
380 <param name="command_override" type="text" area="True" value="" label="Optional. Human wrought command element override XML/template - e.g. for bwa"
381 help="For arbitrary and artfull command lines. All i/o and parameters must be passed. Leave blank unless needed. Not for the faint of heart">
382 <sanitizer>
383 <valid initial="string.printable"/>
384 <mapping initial="none"/>
385 </sanitizer>
386 </param>
387 <param name="test_override" type="text" area="True" value="" label="Optional. Human wrought test element override XML/template - e.g. for bwa"
388 help="For arbitrary and artfull scripts. Leave blank unless needed. Not for the faint of heart">
389 <sanitizer>
390 <valid initial="string.printable" />
391 <mapping initial="none"/>
392 </sanitizer>
393 </param>
394 </when>
395 </conditional>
396 <section name="make" title="Generate, toolshed and local Galaxy installation options" expanded="true">
397 <conditional name="makeMode">
398 <param name="make_Tool" type="select" display="radio" label="Choose the steps you want to run. The TF Docker container is recommended for local installation"
399 help="Installation in this Galaxy is optional" >
400 <option value="generate" >Run to generate tests only. Should fail if dependencies needed.</option>
401 <option value="gentest" selected="true">Test with planemo after generating.</option>
402 <option value="gentestinstall">Install in this Galaxy after generation and testing. Must have local ToolShed as in the TF Docker container</option>
403 </param>
404 <when value="generate">
405 <param name="galaxy_apikey" value="" type="hidden" ></param>
406 <param name="toolshed_apikey" value="" type="hidden" ></param>
407 <param name="galaxy_url" value="" type="hidden" ></param>
408 <param name="toolshed_url" value="" type="hidden" ></param>
409 <expand macro="tool_metadata" />
410 </when>
411 <when value="gentest">
412 <param name="galaxy_apikey" value="" type="hidden" ></param>
413 <param name="toolshed_apikey" value="" type="hidden" ></param>
414 <param name="galaxy_url" value="" type="hidden" ></param>
415 <param name="toolshed_url" value="" type="hidden" ></param>
416 <expand macro="tool_metadata" />
417 </when>
418 <when value="gentestinstall">
419 <param name="galaxy_url" type="text" value="http://localhost:8080" label="URL for the Galaxy server where the new tool should be installed"
420 help="Default is localhost">
421 <sanitizer>
422 <valid initial="string.printable" />
423 <mapping initial="none"/>
424 </sanitizer>
425 </param>
426 <param name="galaxy_apikey" type="text" value="fakekey" label="API key for the Galaxy to install the new tool"
427 help="Cut and paste from the admin user properties screen">
428 <sanitizer>
429 <valid initial="string.ascii_letters,string.digits" />
430 <mapping initial="none"/>
431 </sanitizer>
432 </param>
433 <param name="toolshed_url" type="text" value="http://localhost:9009" label="URL for the Toolshed where the new tool should be installed"
434 help="Default value is localhost:9009">
435 <sanitizer>
436 <valid initial="string.printable" />
437 <mapping initial="none"/>
438 </sanitizer>
439 </param>
440 <param name="toolshed_apikey" type="text" value="fakekey" label="API key for the local toolshed to use when installing the tool"
441 help="Cut and paste from the admin user properties screen">
442 <sanitizer>
443 <valid initial="string.ascii_letters,string.digits" />
444 <mapping initial="none"/>
445 </sanitizer>
446 </param>
447 <expand macro="tool_metadata" />
448 </when>
449 </conditional>
450 </section>
451 </inputs>
452 <outputs>
453
454 <data format="toolshed.gz" name="new_tool" label="${tool_name}_toolshed.gz" >
455 <filter>makeMode['make_Tool'] != "runonly"</filter>
456 </data>
457
458 <collection name="TF_run_report" type="list" label="${tool_name} outputs">
459 <discover_datasets pattern="__name_and_ext__" directory="TF_run_report_tempdir" />
460 </collection>
461 </outputs>
462 <tests>
463 <test>
464 <param name="user_email" value="admin@galaxy.org"/>
465 <param name="input_files" value="input1_sample" />
466 <param name="input_CL" value="1" />
467 <param name="input_formats" value="txt" />
468 <param name="input_label" value="input" />
469 <param name="input_help" value="help" />
470 <param name="tool_name" value="pyrevpos" />
471 <param name="parampass" value="positional" />
472 <param name="make_Tool" value="gentest" />
473 <param name="tool_version" value="0.01" />
474 <param name="tool_desc" value="positional reverse" />
475 <param name="help_text" value="help text goes here" />
476 <param name="packages" value="python"/>
477 <param name="history_name" value="output2" />
478 <param name="history_format" value="txt" />
479 <param name="history_CL" value="2" />
480 <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()"/>
481 <param name="choosescript" value="yes" />
482 <param name="script_path" value="$runme"/>
483 <output name="new_tool" file="toolfactory_pyrevpos_tgz_sample" compare="sim_size" delta="6000" />
484 </test>
485 </tests>
486 <help>
487
488 .. class:: warningmark
489
490 **Details and attribution**
491 (see GTF_)
492
493 **Local Admins ONLY**
494 Only users whose IDs found in the local admin_user configuration setting in universe_wsgi.ini can run this tool.
495
496 **If you find a bug**
497 Please raise an issue, or even better, submit a pull request fixing it, on the github repository GTF_
498
499 **What it does**
500 This tool optionally generates normal workflow compatible first class Galaxy tools
501
502 Generated tools can run existing binary packages that become requirements, existing scripts, or new scripts pasted into this tool form.
503 Pasted scripts are written so they are part of the new tool and cannot be adjusted by the downstream user.
504 Binary packages are managed by the dependency subsystem - conda usually, so anything in bioconda or conda_forge is available for example.
505
506 Any number of parameters can be built into the new tool form for passing in to the script or executable at runtime.
507 These can be editable by the downstream user or baked in.
508
509 When you run this tool, your executable or script and supplied parameter values will be run to produce a canonical
510 set of outputs - these are used to construct a test for the new tool.
511
512 If tool generation is required, a new tarball compatible with any Galaxy toolshed is created.
513 It can be unpacked in your galaxy/tools directory and manually added to tool_conf.xml, or
514 installed into any toolshed from where it can be installed into your Galaxy.
515
516
517 .. class:: warningmark
518
519 **Note to system administrators**
520 This tool offers *NO* built in protection against malicious scripts. It should only be installed on private/personnal Galaxy instances.
521 Admin_users will have the power to do anything they want as the Galaxy user if you install this tool.
522
523 .. class:: warningmark
524
525 **Use on public servers** is STRONGLY discouraged for obvious reasons
526
527 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.
528 We recommend that you follow the good code hygiene practices associated with safe toolshed practices.
529
530 Here's a sample python script that can be cut and pasted into the tool form, suitable for positional parameter passing:
531
532 ::
533
534 # reverse order of text by row
535 import sys
536 inp = sys.argv[1]
537 outp = sys.argv[2]
538 i = open(inp,'r').readlines()
539 o = open(outp,'w')
540 for row in i:
541 rs = row.rstrip()
542 rs = list(rs)
543 rs.reverse()
544 o.write(''.join(rs))
545 o.write('\n')
546 o.close()
547
548 With argparse style parameters:
549
550 ::
551
552 # reverse order of text by row
553 import argparse
554 parser = argparse.ArgumentParser()
555 a = parser.add_argument
556 a('--infile',default='')
557 a('--outfile',default=None)
558 args = parser.parse_args()
559 inp = args.infile
560 outp = args.outfile
561 i = open(inp,'r').readlines()
562 o = open(outp,'w')
563 for row in i:
564 rs = row.rstrip()
565 rs = list(rs)
566 rs.reverse()
567 o.write(''.join(rs))
568 o.write('\n')
569 o.close()
570
571 R script to draw some plots - use a collection.
572
573 ::
574
575
576 \# note this script takes NO input because it generates random data
577 dir.create('plots')
578 for (i in 1:10) {
579 foo = runif(100)
580 bar = rnorm(100)
581 bar = foo + 0.05*bar
582 pdf(paste('plots/yet',i,"anotherplot.pdf",sep='_'))
583 plot(foo,bar,main=paste("Foo by Bar plot \#",i),col="maroon", pch=3,cex=0.6)
584 dev.off()
585 foo = data.frame(a=runif(100),b=runif(100),c=runif(100),d=runif(100),e=runif(100),f=runif(100))
586 bar = as.matrix(foo)
587 pdf(paste('plots/yet',i,"anotherheatmap.pdf",sep='_'))
588 heatmap(bar,main='Random Heatmap')
589 dev.off()
590 }
591
592
593
594 Paper_
595
596 *Licensing*
597
598 Copyright Ross Lazarus (ross period lazarus at gmail period com) May 2012
599 All rights reserved.
600 Licensed under the LGPL_
601
602 .. _LGPL: http://www.gnu.org/copyleft/lesser.html
603 .. _GTF: https://github.com/fubar2/toolfactory
604 .. _Paper: https://academic.oup.com/bioinformatics/article/28/23/3139/192853
605
606
607 </help>
608 <citations>
609 <citation type="doi">10.1093/bioinformatics/bts573</citation>
610 </citations>
611 </tool>
612
613