-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathgalaxy_changelog.html
273 lines (188 loc) · 8.89 KB
/
galaxy_changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html>
<head>
<title>Galaxy Tool Framework Changes</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Oxygen">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<textarea id="source">
class: center, middle
layout: true
class: inverse, middle
---
class: title
# Galaxy Tool Framework Changes
## John Chilton
This document describes changes to Galaxy's tooling framework over recent
releases.
---
### 16.04
Full [Galaxy changelog](https://docs.galaxyproject.org/en/master/releases/16.04_announce.html).
---
#### Tool Profile Version ([PR #1688](https://github.com/galaxyproject/galaxy/pull/1688))
Tools may (and should) now declare a `profile` version (e.g.
`<tool profile="16.04" ...>`).
This allows Galaxy to fire a warning if a tool uses features too new for the
current version and allows us to migrate away from some undesirable default
behaviors that were required for backward compatiblity.
---
#### `set -e` by default ([d020522](https://github.com/galaxyproject/galaxy/pull/1688/commits/d020522650a9bfc86c22923a01fd5d7c07c65326))
From the [IUC best practices documentation](http://galaxy-iuc-standards.readthedocs.org/en/latest/best_practices/tool_xml.html#command-tag):
> _"If you need to execute more than one shell command, concatenate them with a double ampersand (`&&`), so that an error in a command will abort the execution of the following ones."_
The job script generated with profile `16.04`+ tools will include a `#set -e` statement causing this behavior by default.
Older-style tools can enable this behavior by setting `strict="true"` on
the tool `command` XML block.
---
#### Using Exit Codes for Error Detection ([b92074e](b92074e6ff87a19133b4d973577779c4ee6286d7))
Previously the default behavior was for Galaxy to ignore exit codes and
declare a tool in error if issued any output on standard error. This was
a regretable default behavior and so all tools were encouraged to declare
special XML blocks to force the use of exit codes.
For any tool that declares a profile version of `16.04` or greater, the
default is now just to use exit codes for error detection.
---
#### Unrobust Features Removed ([b92074e](b92074e6ff87a19133b4d973577779c4ee6286d7))
A few tool features have ben removed from tools that declare a version of `16.04` or newer.
- The `interepreter=` attribute on `command` blocks has been eliminated. Please use `$__tool_directory__` from within the tool instead.
- `format="input"` on output datasets has been eliminated, please use `format_source=` to specify an exact input to derive datatype from.
- Disables extra output file discovery by default, tools must explicitly describe the outputs to collect with `discover_dataset` tags.
- Tools require a `version` attribute - previously an implicit default to `1.0.0` would be used.
- `$param_file` has been eliminated.
---
#### Clean Working Directories
Previously, Galaxy would fill tool working directories with files related to
metadata and job metric collection. Tools will no longer be executed in the same directory as these files.
This applies to all tools not just profile `16.04`+ tools.
---
### 16.01
Full [Galaxy changelog](https://docs.galaxyproject.org/en/master/releases/16.01_announce.html).
---
#### Conda Dependency Resolution ([PR #1345](https://github.com/galaxyproject/galaxy/pull/1345))
```xml
<tool>
...
<requirements>
<requirement type="package" version="0.11.4">FastQC</requirement>
</requirements>
...
</tool>
```
- Dependency resolvers tell Galaxy how to translate requirements into jobs.
- The Conda dependency resolver forces Galaxy to create a conda environment
for the job with `FastQC` at version `0.11.4` installed.
- Only dependency resolver that can be installed at runtime - great for
Docker images, heterogeneous clusters, and testing tools.
- Links [Conda](http://conda.pydata.org/docs/) and [BioConda](https://bioconda.github.io/)
---
#### ToolBox Enhancements - Labels ([PR #1012](https://github.com/galaxyproject/galaxy/pull/1012))

---
#### ToolBox Enhancements - Monitoring ([PR #1398](https://github.com/galaxyproject/galaxy/pull/1398))
- The Galaxy toolbox can be reloaded from the Admin interface.
- Tool conf files (e.g. `tool_conf.xml`) can be monitored and automatically
reloaded by Galaxy.
- Tool conf files can now be specified as YAML (or JSON).
---
#### Process Inputs as JSON ([PR #1405](https://github.com/galaxyproject/galaxy/pull/1405))
```xml
<command>python "$__tool_directory/script.py" "$json_inputs"</command>
<configfiles>
<inputs name="json_inputs" />
</configfiles>
```
This will produce a file referenced as `$json_inputs` that contains a nested
JSON structure corresponding to the tools inputs. Of limitted utility for
simple command-line tools - but complex tools with many repeats, conditional,
and nesting could potentially benefit from this.
For instance, the [JBrowse](https://github.com/galaxyproject/tools-iuc/blob/master/tools/jbrowse/jbrowse.xml)
tool generates a complex JSON data structure using a `configfile` inside the
XML. This is a much more portable way to deal with that.
---
#### Collections
- `data_collection` tool parameters (`param`s) can now specify multiple
`collection_type`s for consumption ([PR #1308](https://github.com/galaxyproject/galaxy/pull/1308)).
- This mirrors the `format` attribute which allows a comma-separated list
of potential format types.
- Multiple collections can now be supplied to a `multiple="true"` data parameter ([PR #805](https://github.com/galaxyproject/galaxy/pull/805)).
- Output collections can specify a `type_source` attribute (again mirroring
`format_source`) ([PR #1153](https://github.com/galaxyproject/galaxy/pull/1153)).
---
### 15.10
Full [Galaxy changelog](https://docs.galaxyproject.org/en/master/releases/15.10_announce.html).
---
#### Collections
- Tools may now produce explicit nested outputs [PR #538](https://github.com/galaxyproject/galaxy/pull/538).
This enhances the `discover_dataset` XML tag to allow this.
- Allow certain `output` actions on collections.
[PR #544](https://github.com/galaxyproject/galaxy/pull/544).
- Allow `discover_dataset` tags to use `format` instead of `ext`
when referring to datatype extensions/formats.
- Allow `min`/`max` attributes on multiple data input parameters [PR #765](https://github.com/galaxyproject/galaxy/pull/765).
---
#### Whitelist Tools that Generate HTML ([PR #510](https://github.com/galaxyproject/galaxy/pull/510))
Galaxy now contains a plain text file that contains a list of tools whose
output can be trusted when rendering HTML.
---
### 15.07
Full [Galaxy changelog](https://docs.galaxyproject.org/en/master/releases/15.07_announce.html).
---
#### Parameterized XML Macros ([PR #362](https://github.com/galaxyproject/galaxy/pull/362))
Macros now allow defining tokens to be consumed
as XML attributes. For instance, the following definition
```xml
<tool>
<expand macro="inputs" foo="hello" />
<expand macro="inputs" foo="world" />
<expand macro="inputs" />
<macros>
<xml name="inputs" token_foo="the_default">
<inputs>@FOO@</inputs>
</xml>
</macros>
</tool>
```
would expand out as
```xml
<tool>
<inputs>hello</inputs>
<inputs>world</inputs>
<inputs>the_default</inputs>
</tool>
```
---
#### Tool Form
The workflow editor was updated to the use Galaxy's newer
frontend tool form.

---
#### Environment Variables ([PR #395](https://github.com/galaxyproject/galaxy/pull/395))
Tools may now use `inputs` to define environment variables that will be
set during tool execution. The new `environment_variables` XML block is
used to define this.
```xml
<command>
echo "\$INTVAR" > $out_file1;
echo "\$FORTEST" >> $out_file1;
</command>
<environment_variables>
<environment_variable name="INTVAR">$inttest</environment_variable>
<environment_variable name="FORTEST">#for i in ['m', 'o', 'o']#$i#end for#</environment_variable>
</environment_variables>
...
```
[Test tool](https://github.com/galaxyproject/galaxy/blob/dev/test/functional/tools/environment_variables.xml) demonstrating the use of the `environment_variables` tag.
---
#### Collections
- Explicit output collections can now be used in workflows. ([PR #311](https://github.com/galaxyproject/galaxy/pull/311))
- The `filter` tag has been implemented for output dataset collections ([PR #455](https://github.com/galaxyproject/galaxy/pull/455). See the example tool [output_collection_filter.xml](https://github.com/galaxyproject/galaxy/blob/dev/test/functional/tools/output_collection_filter.xml).
</textarea>
<script src="https://gnab.github.io/remark/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>
</body>
</html>