63
|
1 <tool id="rgtf2" name="toolfactory" version="2.00" profile="16.04" >
|
62
|
2 <description>Scripts into tools v2.0</description>
|
48
|
3 <macros>
|
50
|
4 <xml name="tool_metadata">
|
49
|
5 <param name="tool_version" label="Tool Version - bump this to warn users trying to redo old analyses" type="text" value="0.01"
|
|
6 help="If you change your script and regenerate the 'same' tool, you should inform Galaxy (and users) by changing (bumping is traditional) this number"/>
|
|
7 <param name="tool_desc" label="Tool Description" type="text" value=""
|
|
8 help="Supply a brief tool description for the Galaxy tool menu entry (optional - appears after the tool name)" />
|
|
9 <param name="help_text" label="Tool form documentation and help text for users" type="text" area="true"
|
|
10 value="**What it Does**"
|
|
11 help="Supply user documentation to appear on the new tool form as reStructured text - http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html" >
|
|
12 <sanitizer>
|
|
13 <valid initial="string.printable">
|
|
14 </valid>
|
|
15 <mapping initial="none"/>
|
|
16 </sanitizer>
|
|
17 </param>
|
|
18 <repeat name="citations" title="Citation">
|
|
19 <conditional name="citation_type">
|
|
20 <param name="type" type="select" display="radio" label="Citation Type">
|
|
21 <option value="doi">DOI</option>
|
|
22 <option value="bibtex">BibTeX</option>
|
|
23 </param>
|
|
24 <when value="doi">
|
|
25 <param name="doi" label="DOI" type="text" value=""
|
64
|
26 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." />
|
49
|
27 </when>
|
|
28 <when value="bibtex">
|
|
29 <param name="bibtex" label="BibTex" type="text" area="true"
|
|
30 help="Supply a BibTex entry that should be cited when this tool is used in published research." value="" >
|
|
31 <sanitizer>
|
|
32 <valid initial="string.printable">
|
|
33 </valid>
|
|
34 <mapping initial="none"/>
|
|
35 </sanitizer>
|
|
36 </param>
|
|
37 </when>
|
|
38 </conditional>
|
|
39 </repeat>
|
|
40 </xml>
|
48
|
41 <xml name="io">
|
|
42 <repeat name="history_inputs" title="Add a data file from your history to pass in to the script. Use the '+' button as needed"
|
49
|
43 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">
|
48
|
44 <param name="input_files" type="data" format="data" label="Select an input file from your history" optional="true" multiple="false"
|
|
45 help=""/>
|
|
46 <param name="input_formats" type="select" multiple="true" label="Select the datatype(s) that your tool/script accepts as input"
|
|
47 help="If your datatype is not listed here, it has to be added in galaxy's datatypes_conf.xml" value="tabular">
|
|
48 <options from_parameter="tool.app.datatypes_registry.upload_file_formats">
|
|
49 <column name="value" index="0"/>
|
|
50 </options>
|
|
51 </param>
|
|
52 <param name="input_label" type="text" value="" label="This will become the user prompt for the form so please make it informative"
|
|
53 help="Note that '~~~' is an internal delimiter so must not appear in this text field - please work around this technical limitation" >
|
|
54 <sanitizer invalid_char="">
|
|
55 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
56 <mapping initial="none"/>
|
|
57 </sanitizer>
|
|
58 </param>
|
63
|
59 <param name="input_help" type="text" value="" label="This will become help text on the form."
|
48
|
60 help="Note that three consecutive ~ cannot be used in this text field - please work around this technical limitation">
|
|
61 <sanitizer invalid_char="">
|
|
62 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
63 <mapping initial="none"/>
|
|
64 </sanitizer>
|
|
65 </param>
|
|
66 <param name="input_CL" type="text" label="Positional: ordinal integer. Argparse: argument name. STDIN if the executable/script expects it"
|
|
67 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="">
|
|
68 </param>
|
|
69 </repeat>
|
|
70 <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"
|
|
71 help="The name will become a history item for users of the new tool you are making containing one of it's outputs">
|
|
72 <param name="history_name" type="text" label="Name for this output to appear in new history" optional="false" help=""/>
|
|
73 <param name="history_format" type="select" multiple="false" label="Select the datatype for this output"
|
|
74 help="If your datatype is not listed here, it has to be added in galaxy's datatypes_conf.xml" value="tabular">
|
|
75 <options from_parameter="tool.app.datatypes_registry.upload_file_formats">
|
|
76 <column name="value" index="0"/>
|
|
77 </options>
|
|
78 </param>
|
|
79 <param name="history_CL" type="text" label="Positional: ordinal integer. Argparse: argument name expected for this output parameter. Use STDOUT if '>' required."
|
|
80 help="If positional parameters, enter the integer ordinal expected for this parameter. If Argparse style, '--' will be prepended or '-' if single character" value=""/>
|
49
|
81 <param name="history_test" type="text" label="Test pass decision criterion for this output compared to test generation"
|
|
82 help="Available options are diff:lines, sim_size" value="diff:2"/>
|
48
|
83 </repeat>
|
|
84 </xml>
|
|
85 <xml name="additparam">
|
|
86 <param name="edit_params" type="select" display="radio" label="Add any additional parameters to the generated tool form so they are user editable?"
|
|
87 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">
|
63
|
88 <option value="yes" selected="true">Yes, allow user to edit all additional parameters on the generated tool form</option>
|
|
89 <option value="no">No - use the fixed values for all additional parameters - no user editing</option>
|
48
|
90 </param>
|
|
91
|
|
92 <repeat name="additional_parameters" title="Pass additional parameters to the script"
|
|
93 help="See examples below to see how these can be parsed by scripts in the various languages">
|
63
|
94 <param name="param_name" type="text" value="" label="Choose the name for this parameter - MUST not be blank!">
|
48
|
95 <sanitizer invalid_char="">
|
|
96 <valid initial="string.letters,string.digits"/>
|
|
97 <mapping initial="none"/>
|
|
98 </sanitizer>
|
|
99 </param>
|
|
100 <param name="param_type" type="select" label="Select the type for this parameter">
|
|
101 <option value="text" selected="true">text</option>
|
|
102 <option value="integer">integer</option>
|
|
103 <option value="float">float</option>
|
|
104 </param>
|
|
105 <param name="param_value" type="text" value="" label="Enter this parameter's default value"
|
|
106 help="Note that '~~~' is an internal delimiter must not appear in this text field - please work around this technical limitation" >
|
|
107 <sanitizer invalid_char="">
|
|
108 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
109 <mapping initial="none"/>
|
|
110 </sanitizer>
|
|
111 </param>
|
63
|
112 <param name="param_label" type="text" value="" label="Enter this parameter's label for the form"
|
48
|
113 help="Note that '~~~' is an internal delimiter so must not appear in this text field - please work around this technical limitation" >
|
|
114 <sanitizer invalid_char="">
|
|
115 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
116 <mapping initial="none"/>
|
|
117 </sanitizer>
|
|
118 </param>
|
63
|
119 <param name="param_help" type="text" value="" label="Help for this parameter"
|
48
|
120 help="Note that three consecutive ~ cannot be used in this text field - please work around this technical limitation" >
|
|
121 <sanitizer invalid_char="">
|
|
122 <valid initial="string.printable"> <remove value='~~~'/> </valid>
|
|
123 <mapping initial="none"/>
|
|
124 </sanitizer>
|
|
125 </param>
|
49
|
126 <param name="param_CL" type="text" label="Positional ordinal | argparse argument name"
|
48
|
127 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="" />
|
|
128 <param name="param_CLprefixed" type="text" label="Override the generated default argparse name prefix if not empty - eg ----foo if needed"
|
49
|
129 help="Some targets like Planemo expect an unadorned action like 'test' before --galaxy_root." value="" />
|
48
|
130 </repeat>
|
|
131 </xml>
|
|
132 </macros>
|
56
|
133
|
93
|
134 <requirements>
|
94
|
135 <requirement type="package" version="0.4.11">galaxyxml</requirement>
|
|
136 <requirement type="package" version="0.14.0">bioblend</requirement>
|
|
137 <requirement type="package" version="0.10.6">ephemeris</requirement>
|
90
|
138 <requirement type="package" version="0.72.0">planemo</requirement>
|
79
|
139 </requirements>
|
63
|
140
|
50
|
141 <command ><![CDATA[
|
48
|
142 #import os
|
|
143 #set dev_env = os.environ.get('GALAXY_DEVELOPMENT_ENVIRONMENT', '0') == '1'
|
|
144 #if not $dev_env and ( $__user_email__ not in $__admin_users__ ):
|
76
|
145 python3 $__tool_directory__/rgToolFactory2.py --bad_user $__user_email__
|
48
|
146 #else:
|
76
|
147 python3 $__tool_directory__/rgToolFactory2.py
|
49
|
148 #if len(str($cl_prefix)) > 3:
|
|
149 --cl_prefix "$cl_prefix"
|
|
150 #end if
|
|
151 #if $cover.commover == "yes":
|
|
152 #if len(str($cover.command_override)) > 10:
|
|
153 --command_override "$commandoverride"
|
|
154 #end if
|
|
155 #if len(str($cover.test_override)) > 10:
|
|
156 --test_override "$testoverride"
|
|
157 #end if
|
48
|
158 #end if
|
63
|
159 --packages "$packages"
|
|
160 #if $usescript.choosescript == "yes":
|
|
161 --script_path "$runme"
|
|
162 --sysexe "$usescript.scriptrunner"
|
49
|
163 #end if
|
85
|
164 --tool_name "$tool_name" --user_email "$__user_email__" --citations "$citeme" --parampass "$ppass.parampass"
|
63
|
165
|
49
|
166 #if str($makeMode.make_Tool)!="runonly":
|
85
|
167 --make_Tool "$makeMode.make_Tool"
|
|
168 --tool_desc "$makeMode.tool_desc"
|
|
169 --tool_version "$makeMode.tool_version"
|
|
170 --help_text "$helpme"
|
|
171 --new_tool "$new_tool"
|
|
172 --toolshed_api_key "$makeMode.toolshed_apikey"
|
|
173 --galaxy_api_key "$makeMode.galaxy_apikey"
|
|
174 --toolshed_url "$makeMode.toolshed_url"
|
|
175 --galaxy_url "$makeMode.galaxy_url"
|
48
|
176 #end if
|
|
177 #if $ppass.parampass != '0':
|
|
178 #if str($ppass.edit_params) == "yes":
|
|
179 --edit_additional_parameters
|
|
180 #end if
|
|
181 #for apar in $ppass.additional_parameters:
|
85
|
182 --additional_parameters "$apar.param_name~~~$apar.param_value~~~$apar.param_label~~~$apar.param_help~~~$apar.param_type~~~$apar.param_CL~~~$apar.param_CLprefixed"
|
48
|
183 #end for
|
|
184 #end if
|
|
185 #for $intab in $ppass.history_inputs:
|
85
|
186 --input_files "$intab.input_files~~~$intab.input_CL~~~$intab.input_formats~~~$intab.input_label~~~$intab.input_help"
|
48
|
187 #end for
|
|
188 #for $otab in $ppass.history_outputs:
|
49
|
189 --output_files "$otab.history_name~~~$otab.history_format~~~$otab.history_CL~~~$otab.history_test"
|
48
|
190 #end for
|
63
|
191 --galaxy_root "$__root_dir__"
|
73
|
192 --tool_dir "$__tool_directory__"
|
48
|
193 #end if
|
|
194 ]]></command>
|
|
195 <configfiles>
|
|
196 <configfile name="runme">
|
49
|
197 $usescript.dynScript
|
48
|
198 </configfile>
|
49
|
199 <configfile name="commandoverride">
|
|
200 #if $cover.commover == "yes" and len(str($cover.command_override).strip()) > 1:
|
|
201 $cover.command_override
|
|
202 #end if
|
63
|
203 </configfile>
|
49
|
204 <configfile name="testoverride">
|
|
205 #if $cover.commover == "yes" and len(str($cover.test_override).strip()) > 1:
|
|
206 $cover.test_override
|
|
207 #end if
|
63
|
208 </configfile>
|
48
|
209 <configfile name="helpme">
|
49
|
210 #if $makeMode.make_Tool != "runonly":
|
48
|
211 ${makeMode.help_text}
|
|
212 #else
|
|
213 $tool_name help goes here
|
|
214 #end if
|
|
215 </configfile>
|
|
216 <configfile name="citeme">
|
49
|
217 #if $makeMode.make_Tool != "runonly":
|
48
|
218 #for $citation in $makeMode.citations:
|
|
219 #if $citation.citation_type.type == "bibtex":
|
|
220 **ENTRY**bibtex
|
|
221 ${citation.citation_type.bibtex}
|
|
222 #else
|
|
223 **ENTRY**doi
|
|
224 ${citation.citation_type.doi}
|
|
225 #end if
|
|
226 #end for
|
|
227 #end if
|
|
228 </configfile>
|
|
229 </configfiles>
|
|
230 <inputs>
|
|
231 <param name="tool_name" type="text" value="tool1" label="New tool ID and title for outputs"
|
49
|
232 help="Toolshed repository name. Choose thoughtfully to avoid namespace clashes with other tool writers. Lower case, digits and underscores only">
|
48
|
233 <sanitizer invalid_char="">
|
|
234 <valid initial="string.letters,string.digits">
|
|
235 <add value="_"/>
|
|
236 </valid>
|
|
237 </sanitizer>
|
|
238 </param>
|
63
|
239 <param name="packages" type="text" value="" label="Conda dependencies as package name[:version, name:version...]. These will always be available when this tool executes"
|
|
240 optional="false" help="Use :[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" />
|
|
241
|
|
242 <conditional name="usescript">
|
|
243 <param name="choosescript" type="select" display="radio" label="Supply a script to either a dependency (e.g. python/R/bash) or a system executable such as Bash"
|
|
244 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">
|
|
245 <option value="no" selected="true">No script required for this tool - just pass parameters on the command line to the first dependency listed above</option>
|
|
246 <option value="yes">Yes, a script is ready to be pasted below</option>
|
48
|
247 </param>
|
49
|
248 <when value="no">
|
|
249 <param name="dynScript" type="hidden" value="" />
|
63
|
250 <param name="scriptrunner" type="hidden" value="" />
|
49
|
251 </when>
|
|
252 <when value="yes">
|
63
|
253 <param name="scriptrunner" type="text" value="" label="Interpreter for the script pasted below - eg bash or python. Can be one of the dependencies named above or a system executable"
|
|
254 help="Scripts are interpreted by the executable named here. Use bash for bash scripts, or a conda dependency such as R or Python for those scripts">
|
|
255 <sanitizer invalid_char="">
|
|
256 <valid initial="string.letters,string.digits">
|
|
257 <add value="_"/>
|
|
258 </valid>
|
|
259 </sanitizer>
|
|
260 </param>
|
|
261 <param name="dynScript" type="text" area="True" value="" label="Script for executable below to interpret. It can be one of the Conda dependency names "
|
50
|
262 help="Script must handle all i/o and parameters as specified below using the parameters and passing method chosen below">
|
49
|
263 <sanitizer>
|
|
264 <valid initial="string.printable">
|
|
265 </valid>
|
|
266 <mapping initial="none"/>
|
|
267 </sanitizer>
|
|
268 </param>
|
|
269 </when>
|
|
270 </conditional>
|
63
|
271
|
49
|
272 <conditional name="ppass">
|
48
|
273 <param name="parampass" type="select" display="radio" label="Command line parameter passing method to use">
|
50
|
274 <option value="argparse" selected="true">Argparse: passed in the form of --clname value</option>
|
49
|
275 <option value="positional">Positional: Passed in the order of positional ordinals ...foo.bam bar.idx zot.xls</option>
|
50
|
276 <option value="0">Tool reads selected input file from STDIN and writes STDOUT with no parameters</option>
|
48
|
277 </param>
|
49
|
278 <when value="argparse">
|
48
|
279 <expand macro="io" />
|
|
280 <expand macro="additparam" />
|
|
281 </when>
|
49
|
282 <when value="positional">
|
48
|
283 <expand macro="io" />
|
|
284 <expand macro="additparam" />
|
|
285 </when>
|
49
|
286 <when value="0">
|
48
|
287 <expand macro="io"/>
|
|
288 </when>
|
|
289 </conditional>
|
49
|
290 <param name="cl_prefix" type="text" value="" label="Prefix for generated command line. Prepends generated i/o and parameter CL. Use override below to replace completely"
|
|
291 help="Text will replace generated executable/script elements. Sometimes required before i/o and parameters in the generated command line." />
|
|
292 <conditional name="cover">
|
|
293 <param name="commover" type="select" display="radio" label="Add Human wrought code to override the generated XML command and/or test section - DIY"
|
|
294 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">
|
50
|
295 <option value="no" selected="true">No. Use automatically generated command/test XML </option>
|
|
296 <option value="yes">Yes. XML needed to override autogenerated command and/or test segments will be pasted below</option>
|
63
|
297 </param>
|
49
|
298 <when value="no">
|
|
299 <param name="command_override" type="hidden" value="" />
|
|
300 <param name="test_override" type="hidden" value="" />
|
48
|
301 </when>
|
49
|
302 <when value="yes">
|
|
303 <param name="command_override" type="text" area="True" value="" label="Optional. Human wrought command element override XML/template - e.g. for bwa"
|
|
304 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">
|
|
305 <sanitizer>
|
|
306 <valid initial="string.printable">
|
|
307 </valid>
|
|
308 <mapping initial="none"/>
|
|
309 </sanitizer>
|
|
310 </param>
|
|
311 <param name="test_override" type="text" area="True" value="" label="Optional. Human wrought test element override XML/template - e.g. for bwa"
|
|
312 help="For arbitrary and artfull scripts. Leave blank unless needed. Not for the faint of heart">
|
|
313 <sanitizer>
|
|
314 <valid initial="string.printable">
|
|
315 </valid>
|
|
316 <mapping initial="none"/>
|
|
317 </sanitizer>
|
63
|
318 </param>
|
48
|
319 </when>
|
|
320 </conditional>
|
49
|
321
|
|
322 <conditional name="makeMode">
|
50
|
323 <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"
|
63
|
324 help="Installation in this Galaxy is optional" >
|
66
|
325 <option value="generate" >Run to generate tests only. Should fail if dependencies needed.</option>
|
50
|
326 <option value="gentest" selected="true">Test with planemo after generating.</option>
|
|
327 <option value="gentestinstall">Install in this Galaxy after generation and testing. Must have local ToolShed as in the TF Docker container</option>
|
49
|
328 </param>
|
66
|
329 <when value="generate">
|
|
330 <param name="galaxy_apikey" value="" type="hidden" ></param>
|
|
331 <param name="toolshed_apikey" value="" type="hidden" ></param>
|
|
332 <param name="galaxy_url" value="" type="hidden" ></param>
|
|
333 <param name="toolshed_url" value="" type="hidden" ></param>
|
|
334 <expand macro="tool_metadata" />
|
|
335 </when>
|
62
|
336 <when value="gentest">
|
63
|
337 <param name="galaxy_apikey" value="" type="hidden" ></param>
|
|
338 <param name="toolshed_apikey" value="" type="hidden" ></param>
|
|
339 <param name="galaxy_url" value="" type="hidden" ></param>
|
|
340 <param name="toolshed_url" value="" type="hidden" ></param>
|
50
|
341 <expand macro="tool_metadata" />
|
49
|
342 </when>
|
|
343 <when value="gentestinstall">
|
63
|
344 <param name="galaxy_url" type="text" value="http://localhost:8080" label="URL for the Galaxy server where the new tool should be installed"
|
|
345 help="Default is localhost">
|
|
346 <sanitizer>
|
|
347 <valid initial="string.printable">
|
|
348 </valid>
|
|
349 <mapping initial="none"/>
|
|
350 </sanitizer>
|
|
351 </param>
|
64
|
352 <param name="galaxy_apikey" type="text" value="fakekey" label="API key for the Galaxy to install the new tool"
|
63
|
353 help="Cut and paste from the admin user properties screen">
|
|
354 <sanitizer>
|
|
355 <valid initial="string.letters,string.digits">
|
|
356 </valid>
|
|
357 <mapping initial="none"/>
|
|
358 </sanitizer>
|
|
359 </param>
|
|
360 <param name="toolshed_url" type="text" value="http://localhost:9009" label="URL for the Toolshed where the new tool should be installed"
|
|
361 help="Default value is localhost:9009">
|
|
362 <sanitizer>
|
|
363 <valid initial="string.printable">
|
|
364 </valid>
|
|
365 <mapping initial="none"/>
|
|
366 </sanitizer>
|
|
367 </param>
|
64
|
368 <param name="toolshed_apikey" type="text" value="fakekey" label="API key for the local toolshed to use when installing the tool"
|
63
|
369 help="Cut and paste from the admin user properties screen">
|
|
370 <sanitizer>
|
|
371 <valid initial="string.letters,string.digits">
|
|
372 </valid>
|
|
373 <mapping initial="none"/>
|
|
374 </sanitizer>
|
|
375 </param>
|
|
376
|
50
|
377 <expand macro="tool_metadata" />
|
49
|
378 </when>
|
|
379 </conditional>
|
|
380
|
48
|
381 </inputs>
|
|
382 <outputs>
|
|
383
|
|
384 <data format="tgz" name="new_tool" label="${tool_name}_toolshed.tgz" >
|
49
|
385 <filter>makeMode['make_Tool'] != "runonly"</filter>
|
48
|
386 </data>
|
|
387
|
|
388 <collection name="TF_run_report" type="list" label="${tool_name} outputs">
|
|
389 <discover_datasets pattern="__name_and_ext__" directory="TF_run_report_tempdir" />
|
|
390 </collection>
|
|
391 </outputs>
|
|
392 <tests>
|
|
393 <test>
|
50
|
394 <param name="user_email" value="admin@galaxy.org"/>
|
48
|
395 <param name="input_files" value="input1_sample" />
|
|
396 <param name="input_CL" value="1" />
|
|
397 <param name="input_formats" value="txt" />
|
|
398 <param name="input_label" value="input" />
|
|
399 <param name="input_help" value="help" />
|
|
400 <param name="tool_name" value="pyrevpos" />
|
|
401 <param name="parampass" value="positional" />
|
49
|
402 <param name="make_Tool" value="generate" />
|
48
|
403 <param name="tool_version" value="0.01" />
|
|
404 <param name="tool_desc" value="positional reverse" />
|
|
405 <param name="help_text" value="help text goes here" />
|
50
|
406 <param name="packages" value="python"/>
|
|
407 <param name="history_name" value="output2" />
|
48
|
408 <param name="history_format" value="txt" />
|
|
409 <param name="history_CL" value="2" />
|
|
410 <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()"/>
|
50
|
411 <param name="choosescript" value="yes" />
|
|
412 <param name="script_path" value="$runme"/>
|
48
|
413 <output name="new_tool" file="toolfactory_pyrevpos_tgz_sample" compare="sim_size" delta="6000" />
|
95
|
414 <output name="output2" file="output2_sample" compare="diff" />
|
63
|
415
|
48
|
416 </test>
|
|
417 </tests>
|
|
418 <help>
|
|
419
|
|
420 .. class:: warningmark
|
|
421
|
|
422 **Details and attribution**
|
|
423 (see GTF_)
|
|
424
|
|
425 **Local Admins ONLY**
|
|
426 Only users whose IDs found in the local admin_user configuration setting in universe_wsgi.ini can run this tool.
|
|
427
|
|
428 **If you find a bug**
|
|
429 Please raise an issue, or even better, submit a pull request fixing it, on the github repository GTF_
|
|
430
|
|
431 **What it does**
|
|
432 This tool optionally generates normal workflow compatible first class Galaxy tools
|
|
433
|
|
434 Generated tools can run existing binary packages that become requirements, existing scripts, or new scripts pasted into this tool form.
|
|
435 Pasted scripts are written so they are part of the new tool and cannot be adjusted by the downstream user.
|
|
436 Binary packages are managed by the dependency subsystem - conda usually, so anything in bioconda or conda_forge is available for example.
|
|
437
|
|
438 Any number of parameters can be built into the new tool form for passing in to the script or executable at runtime.
|
|
439 These can be editable by the downstream user or baked in.
|
|
440
|
|
441 When you run this tool, your executable or script and supplied parameter values will be run to produce a canonical
|
|
442 set of outputs - these are used to construct a test for the new tool.
|
|
443
|
|
444 If tool generation is required, a new tarball compatible with any Galaxy toolshed is created.
|
|
445 It can be unpacked in your galaxy/tools directory and manually added to tool_conf.xml, or
|
|
446 installed into any toolshed from where it can be installed into your Galaxy.
|
|
447
|
|
448
|
|
449 .. class:: warningmark
|
|
450
|
|
451 **Note to system administrators**
|
|
452 This tool offers *NO* built in protection against malicious scripts. It should only be installed on private/personnal Galaxy instances.
|
|
453 Admin_users will have the power to do anything they want as the Galaxy user if you install this tool.
|
|
454
|
|
455 .. class:: warningmark
|
|
456
|
|
457 **Use on public servers** is STRONGLY discouraged for obvious reasons
|
|
458
|
|
459 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.
|
|
460 We recommend that you follow the good code hygiene practices associated with safe toolshed practices.
|
|
461
|
|
462 Here's a sample python script that can be cut and pasted into the tool form, suitable for positional parameter passing:
|
|
463
|
|
464 ::
|
|
465
|
|
466 # reverse order of text by row
|
|
467 import sys
|
|
468 inp = sys.argv[1]
|
|
469 outp = sys.argv[2]
|
|
470 i = open(inp,'r').readlines()
|
|
471 o = open(outp,'w')
|
|
472 for row in i:
|
|
473 rs = row.rstrip()
|
|
474 rs = list(rs)
|
|
475 rs.reverse()
|
|
476 o.write(''.join(rs))
|
|
477 o.write('\n')
|
|
478 o.close()
|
|
479
|
|
480 With argparse style parameters:
|
|
481
|
|
482 ::
|
|
483
|
|
484 # reverse order of text by row
|
|
485 import argparse
|
|
486 parser = argparse.ArgumentParser()
|
|
487 a = parser.add_argument
|
|
488 a('--infile',default='')
|
|
489 a('--outfile',default=None)
|
|
490 args = parser.parse_args()
|
|
491 inp = args.infile
|
|
492 outp = args.outfile
|
|
493 i = open(inp,'r').readlines()
|
|
494 o = open(outp,'w')
|
|
495 for row in i:
|
|
496 rs = row.rstrip()
|
|
497 rs = list(rs)
|
|
498 rs.reverse()
|
|
499 o.write(''.join(rs))
|
|
500 o.write('\n')
|
|
501 o.close()
|
|
502
|
|
503
|
|
504
|
63
|
505 Paper_
|
48
|
506
|
50
|
507 *Licensing*
|
48
|
508
|
|
509 Copyright Ross Lazarus (ross period lazarus at gmail period com) May 2012
|
|
510 All rights reserved.
|
|
511 Licensed under the LGPL_
|
|
512
|
|
513 .. _LGPL: http://www.gnu.org/copyleft/lesser.html
|
|
514 .. _GTF: https://github.com/fubar2/toolfactory
|
|
515 .. _Paper: http://bioinformatics.oxfordjournals.org/cgi/reprint/bts573
|
|
516
|
|
517
|
|
518 </help>
|
|
519 <citations>
|
|
520 <citation type="doi">10.1093/bioinformatics/bts573</citation>
|
|
521 </citations>
|
|
522 </tool>
|
|
523
|
|
524
|