Releases: dnanexus/dxWDL
Releases · dnanexus/dxWDL
dxWDL v1.50
Added per-workflow and per-scatter chunk size settings to extras.json
dxWDL v1.49.4
- Introduced a
-streamFiles
option for WDL compilation, with two valid values:all
andnone
. It allows the user to specify whether to mount all files with dxfuse (do not use the download agent), or to mount no files with dxfuse (only use download agent); this setting overrides any per-file settings in WDL parameter_meta sections.
dxWDL 2.0.0-rc4
- Major code reorganization to separate the compiler from executor
- Upgrade of dxda to v0.5.4 and dxfuse to v0.22.4
dxWDL v1.49.3
- Upgrade dxda to v0.5.4
- Increase number of API retries to 10
- Add 'fields' key when calling system/findXXX with describe
dxWDL 1.45.2
- Upgrade dxda to v0.5.4
- Increase the number of API retries to 10
- Add 'fields' key when calling system/findXXX with describe
dxWDL v1.49.2 (pre-release)
- Upgraded dxda to v0.5.3
dxWDL v1.45.1
- Upgraded dxda to v0.5.3
- Upgraded dxfuse to v0.22.4
dxWDL v1.49.1 (pre-release)
- Fix name regexp in DxFindDataObjects, which makes searching for objects in a folder with existing objects much faster
- Upgrade dxfuse to 0.22.4
dxWDL v1.49.0 (pre-release)
- Remove size limit on scatters. Instead, scatters are broken up into chunks, with up to 500 jobs in each chunk. This allows scatters of any size while minimizing load on the API server.
- Describe executions during call to system/findExecutions, rather than as a separate call, to fix error when describing more than 1000 scatter jobs
dxWDL 2.0.0-rc3
Update to latest wdlTools
(0.5.0), which includes these changes:
- Code reorg (e.g. wdlTools.util.Utils was split into FileUtils and SystemUtils and some functions renamed (e.g. exprToString -> prettyFormatExpr)
- WDL Ints are now represented as Scala Longs
- TypedAbstractSyntax was simplified and some classes removed/unified
- Eval API changed, and Context was removed in favor of the more generic Bindings class