LatchBio Integration
Current Baseline
This skill targets Latch SDK 2.76.8, released July 10, 2026. The package
metadata supports Python 3.9–3.12 and declares Python 3.9+.
Treat the installed package and its changelog as authoritative when a guide
disagrees with the SDK. Some Latch guides retain older Python ranges or
compatibility-specific pre-release pins, especially the Snakemake v2 tutorial.
Never combine commands or imports from different tracks without checking their
version requirements.
When to Use
Use this skill to:
- Create or maintain Python SDK workflows and task graphs
- Package and register Python, Nextflow, or Snakemake pipelines
- Configure task CPU, memory, storage, GPU, caching, retries, and timeouts
- Work with Latch Data through
LPath, LatchFile, LatchDir, or the CLI
- Read or update Latch Registry projects, tables, and records
- Design workflow forms, launch plans, samplesheets, messages, and result links
- Stage and debug workflow images with
latch register --staging and latch develop
- Launch and monitor workflows through Python or Latch MCP
- Discover and use ready-to-run Latch workflows
Route to the Right Reference
Read only the references needed for the task:
| Need |
Reference |
| Python workflows, tasks, maps, conditions, caching |
references/workflow-creation.md |
LPath, legacy file types, Latch URLs, data CLI |
references/data-management.md |
| Registry reads, transactions, samplesheets |
references/registry.md |
| CPU, memory, storage, GPU, dynamic resources |
references/resource-configuration.md |
| Nextflow and Snakemake packaging |
references/nextflow-snakemake.md |
| Metadata, forms, launch plans, messages, automations |
references/ui-and-automation.md |
| Registration, development, execution, monitoring |
references/operations-and-debugging.md |
Ready-to-use workflows and latch.verified |
references/verified-workflows.md |
| Remote MCP setup and tool workflow |
references/latch-mcp.md |
Before relying on a symbol, run scripts/inspect_latch_sdk.py against the
target SDK version. It performs local imports only and does not authenticate or
make network requests.
Installation and Authentication
For a reproducible environment:
uv venv --python 3.12
source .venv/bin/activate
uv pip install "latch==2.76.8"
On Windows, use WSL for the documented Linux workflow tooling.
Authenticate through the supported OAuth flow; do not read, print, copy, or
parse ~/.latch/token manually:
latch login
latch workspace
Select a workspace non-interactively when its numeric ID is already known:
latch workspace --id 12345
latch login credentials are for the SDK and CLI. Latch MCP uses a separate
OAuth authorization and its credentials cannot be reused for general SDK
access.
Fast Path
Create and remotely register the maintained subprocess template:
latch init covid-wf --template subprocess
latch register --yes --open covid-wf
Remote image building is the default. Use --no-remote only when a local
Docker daemon is available and a local build is intentional.
Minimal Python Workflow
Keep workflow bodies declarative: invoke tasks and return their promises.
Perform computation and side effects inside tasks.
from latch import small_task, workflow
@small_task
def reverse_complement(sequence: str) -> str:
table = str.maketrans("ACGTacgt", "TGCAtgca")
return sequence.translate(table)[::-1]
@workflow
def reverse_complement_workflow(sequence: str) -> str:
"""Return the reverse complement of a DNA sequence."""
return reverse_complement(sequence=sequence)
Use @workflow(metadata) when the generated interface needs custom labels,
sections, validation rules, samplesheets, or documentation links. Use LatchFile or
LatchDir for automatic task input staging and output upload; use LPath for
imperative remote path operations.
Recommended Development Lifecycle
Inspect compatibility
- Confirm the installed SDK and Python version.
- Identify whether the project is Python, Nextflow, the legacy Snakemake
flag path, or the separately pinned Snakemake v2 tutorial track.
Define a typed interface
- Annotate every workflow and task input and output.
- Keep module import time free of network calls, data mutations, and secret
retrieval. Isolate documented exceptions such as
workflow_reference,
which resolves the active workspace when its decorator is evaluated.
- Use dataclasses and enums for structured parameters.
Configure metadata and resources
- Match metadata parameter keys to the workflow signature.
- Start with named task decorators, then use
custom_task only when measured
requirements justify it.
Validate in the execution image
Fresh Nextflow and Snakemake projects must generate their
version-compatible Python entrypoint before staging. In SDK 2.76.8, the
staging branch does not generate one from --nf-script or --snakefile.
latch register --staging .
latch develop .
Re-run staging registration after changing the Dockerfile or dependencies.
Edits made inside the development container are not synced back.
Register deliberately
latch register --yes --open .
Useful controls:
latch register --workspace-id 12345 .
latch register --mark-as-release .
latch register --workflow-module wf.custom_entrypoint .
Duplicate registration exits with status 2; it is not the same as a build
failure.
Launch only after reviewing cost and parameters
- Prefer the Console or Latch MCP for interactive operation.
- Prefer
latch_cli.services.launch.launch_v2 for Python automation.
- Do not use the deprecated
latch launch CLI as a new integration pattern.
Monitor and verify
- Check terminal status, task logs, result links, and scientific outputs.
- Treat successful orchestration as necessary but not sufficient scientific
validation.
Operational Safety
- Ask for confirmation before launching paid compute, especially GPU or large
batch runs.
- Ask for confirmation before
LPath.rmr, latch rmr, Registry deletion, or
overwriting shared destinations.
- Never log secrets, SDK tokens, signed URLs, or secret values.
- Call
get_secret() only inside a task, use the returned value only for its
intended service, and never return it as workflow output.
- Do not pass untrusted strings through shell commands. Prefer argument lists
with
subprocess.run(..., check=True).
- Pin the SDK and workflow dependencies for releases. Upgrade only after
reviewing the changelog and re-running staging tests.
- Treat generated files as generated: customize the documented extension file
rather than editing output that the CLI will overwrite.
Inspect the Installed SDK
From this skill directory:
uv run --no-project --python 3.12 --with "latch==2.76.8" \
python scripts/inspect_latch_sdk.py
Use JSON output for automated comparisons:
uv run --no-project --python 3.12 --with "latch==2.76.8" \
python scripts/inspect_latch_sdk.py --json
Authoritative Sources
1---2name: latchbio-integration3description: Build, register, debug, and operate bioinformatics workflows on Latch using the Python SDK, CLI, Latch Data and Registry, Nextflow, Snakemake, programmatic execution, and Latch MCP. Use when authoring or deploying Latch workflows, configuring resources or interfaces, moving data, integrating Registry, or launching and monitoring runs.4license: MIT5---6
7# LatchBio Integration
8
9## Current Baseline
10
11This skill targets **Latch SDK 2.76.8**, released July 10, 2026. The package
12metadata supports Python 3.9–3.12 and declares Python 3.9+.
13
14Treat the installed package and its changelog as authoritative when a guide
15disagrees with the SDK. Some Latch guides retain older Python ranges or
16compatibility-specific pre-release pins, especially the Snakemake v2 tutorial.
17Never combine commands or imports from different tracks without checking their
18version requirements.
19
20## When to Use
21
22Use this skill to:
23
24- Create or maintain Python SDK workflows and task graphs
25- Package and register Python, Nextflow, or Snakemake pipelines
26- Configure task CPU, memory, storage, GPU, caching, retries, and timeouts
27- Work with Latch Data through `LPath`, `LatchFile`, `LatchDir`, or the CLI
28- Read or update Latch Registry projects, tables, and records
29- Design workflow forms, launch plans, samplesheets, messages, and result links
30- Stage and debug workflow images with `latch register --staging` and `latch develop`
31- Launch and monitor workflows through Python or Latch MCP
32- Discover and use ready-to-run Latch workflows
33
34## Route to the Right Reference
35
36Read only the references needed for the task:
37
38| Need | Reference |
39|---|---|
40| Python workflows, tasks, maps, conditions, caching | `references/workflow-creation.md` |
41| `LPath`, legacy file types, Latch URLs, data CLI | `references/data-management.md` |
42| Registry reads, transactions, samplesheets | `references/registry.md` |
43| CPU, memory, storage, GPU, dynamic resources | `references/resource-configuration.md` |
44| Nextflow and Snakemake packaging | `references/nextflow-snakemake.md` |
45| Metadata, forms, launch plans, messages, automations | `references/ui-and-automation.md` |
46| Registration, development, execution, monitoring | `references/operations-and-debugging.md` |
47| Ready-to-use workflows and `latch.verified` | `references/verified-workflows.md` |
48| Remote MCP setup and tool workflow | `references/latch-mcp.md` |
49
50Before relying on a symbol, run `scripts/inspect_latch_sdk.py` against the
51target SDK version. It performs local imports only and does not authenticate or
52make network requests.
53
54## Installation and Authentication
55
56For a reproducible environment:
57
58```bash
59uv venv --python 3.12
60source .venv/bin/activate
61uv pip install "latch==2.76.8"
62```
63
64On Windows, use WSL for the documented Linux workflow tooling.
65
66Authenticate through the supported OAuth flow; do not read, print, copy, or
67parse `~/.latch/token` manually:
68
69```bash
70latch login
71latch workspace
72```
73
74Select a workspace non-interactively when its numeric ID is already known:
75
76```bash
77latch workspace --id 12345
78```
79
80`latch login` credentials are for the SDK and CLI. Latch MCP uses a separate
81OAuth authorization and its credentials cannot be reused for general SDK
82access.
83
84## Fast Path
85
86Create and remotely register the maintained subprocess template:
87
88```bash
89latch init covid-wf --template subprocess
90latch register --yes --open covid-wf
91```
92
93Remote image building is the default. Use `--no-remote` only when a local
94Docker daemon is available and a local build is intentional.
95
96## Minimal Python Workflow
97
98Keep workflow bodies declarative: invoke tasks and return their promises.
99Perform computation and side effects inside tasks.
100
101```python
102from latch import small_task, workflow
103
104
105@small_task
106def reverse_complement(sequence: str) -> str:
107 table = str.maketrans("ACGTacgt", "TGCAtgca")
108 return sequence.translate(table)[::-1]
109
110
111@workflow
112def reverse_complement_workflow(sequence: str) -> str:
113 """Return the reverse complement of a DNA sequence."""
114 return reverse_complement(sequence=sequence)
115```
116
117Use `@workflow(metadata)` when the generated interface needs custom labels,
118sections, validation rules, samplesheets, or documentation links. Use `LatchFile` or
119`LatchDir` for automatic task input staging and output upload; use `LPath` for
120imperative remote path operations.
121
122## Recommended Development Lifecycle
123
1241. **Inspect compatibility**
125 - Confirm the installed SDK and Python version.
126 - Identify whether the project is Python, Nextflow, the legacy Snakemake
127 flag path, or the separately pinned Snakemake v2 tutorial track.
128
1292. **Define a typed interface**
130 - Annotate every workflow and task input and output.
131 - Keep module import time free of network calls, data mutations, and secret
132 retrieval. Isolate documented exceptions such as `workflow_reference`,
133 which resolves the active workspace when its decorator is evaluated.
134 - Use dataclasses and enums for structured parameters.
135
1363. **Configure metadata and resources**
137 - Match metadata parameter keys to the workflow signature.
138 - Start with named task decorators, then use `custom_task` only when measured
139 requirements justify it.
140
1414. **Validate in the execution image**
142
143 Fresh Nextflow and Snakemake projects must generate their
144 version-compatible Python entrypoint before staging. In SDK 2.76.8, the
145 staging branch does not generate one from `--nf-script` or `--snakefile`.
146
147 ```bash
148 latch register --staging .
149 latch develop .
150 ```
151
152 Re-run staging registration after changing the Dockerfile or dependencies.
153 Edits made inside the development container are not synced back.
154
1555. **Register deliberately**
156
157 ```bash
158 latch register --yes --open .
159 ```
160
161 Useful controls:
162
163 ```bash
164 latch register --workspace-id 12345 .
165 latch register --mark-as-release .
166 latch register --workflow-module wf.custom_entrypoint .
167 ```
168
169 Duplicate registration exits with status `2`; it is not the same as a build
170 failure.
171
1726. **Launch only after reviewing cost and parameters**
173 - Prefer the Console or Latch MCP for interactive operation.
174 - Prefer `latch_cli.services.launch.launch_v2` for Python automation.
175 - Do not use the deprecated `latch launch` CLI as a new integration pattern.
176
1777. **Monitor and verify**
178 - Check terminal status, task logs, result links, and scientific outputs.
179 - Treat successful orchestration as necessary but not sufficient scientific
180 validation.
181
182## Operational Safety
183
184- Ask for confirmation before launching paid compute, especially GPU or large
185 batch runs.
186- Ask for confirmation before `LPath.rmr`, `latch rmr`, Registry deletion, or
187 overwriting shared destinations.
188- Never log secrets, SDK tokens, signed URLs, or secret values.
189- Call `get_secret()` only inside a task, use the returned value only for its
190 intended service, and never return it as workflow output.
191- Do not pass untrusted strings through shell commands. Prefer argument lists
192 with `subprocess.run(..., check=True)`.
193- Pin the SDK and workflow dependencies for releases. Upgrade only after
194 reviewing the changelog and re-running staging tests.
195- Treat generated files as generated: customize the documented extension file
196 rather than editing output that the CLI will overwrite.
197
198## Inspect the Installed SDK
199
200From this skill directory:
201
202```bash
203uv run --no-project --python 3.12 --with "latch==2.76.8" \
204 python scripts/inspect_latch_sdk.py
205```
206
207Use JSON output for automated comparisons:
208
209```bash
210uv run --no-project --python 3.12 --with "latch==2.76.8" \
211 python scripts/inspect_latch_sdk.py --json
212```
213
214## Authoritative Sources
215
216- Documentation index: https://wiki.latch.bio/llms.txt
217- Workflow and SDK guides: https://wiki.latch.bio/workflows/overview
218- SDK API reference: https://wiki.latch.bio/reference/sdk
219- PyPI package: https://pypi.org/project/latch/
220- SDK 2.76.8 release source: https://github.com/latchbio/latch/tree/0faa9dcd8186444ac008f50adf95d43f0fa30e06
221- SDK changelog: https://github.com/latchbio/latch/blob/0faa9dcd8186444ac008f50adf95d43f0fa30e06/CHANGELOG.md
222- Latch Console: https://console.latch.bio