v1.17.0
Templates and Tags
This release brings the --template
flag to latch init
as well as a tags
field in LatchMetadata
.
Templates
The Latch SDK now supports creating two new template workflows automatically, namely one already with a Dockerfile that installs R
, and one already with a Dockerfile that installs conda
. To generate these, simply use latch init
with the --template
option like so:
>>> latch init [package_root] --template=[...]
Valid values for the template option as of now are r
, conda
, and default
. In particular, the default
option (as well as just not providing the flag itself) creates the default assemble_and_sort
workflow.
Tags
You can now give workflows tags - simply provide a list of strings to the tags
parameter in LatchMetadata
. These tags will be rendered in the console, and can be used to describe the biological domains your workflow falls under.
What's Changed
- add custom connections to login by @maximsmol in #152
- Better tutorials and examples by @hannahle in #153
- Docs: clarify how to use latch preview by @hannahle in #150
- templates for R and conda workflows by @ayushkamat in #154
- fix: exec type error by @r614 in #155
New Contributors
Full Changelog: v1.16.1...v1.17.0