Latchbio Integration
Build and deploy bioinformatics workflows as serverless cloud pipelines
✨ The solution you've been looking for
Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.
See It In Action
Interactive preview & real-world examples
AI Conversation Simulator
See how users interact with this skill
User Prompt
Create a Latch workflow for RNA-seq analysis that includes FastQC, STAR alignment, and featureCounts quantification
Skill Processing
Analyzing request...
Agent Response
A deployable workflow with @workflow and @task decorators, proper resource allocation, and cloud data management
Quick Start (3 Steps)
Get up and running in minutes
Install
claude-code skill install latchbio-integration
claude-code skill install latchbio-integrationConfig
First Trigger
@latchbio-integration helpCommands
| Command | Description | Required Args |
|---|---|---|
| @latchbio-integration rna-seq-analysis-pipeline | Create a complete RNA-seq workflow with quality control, alignment, and quantification steps | None |
| @latchbio-integration gpu-accelerated-protein-folding | Deploy AlphaFold or custom GPU workflows for protein structure prediction | None |
| @latchbio-integration data-organization-and-tracking | Set up structured data management with Registry for sample tracking and metadata | None |
Typical Use Cases
RNA-seq Analysis Pipeline
Create a complete RNA-seq workflow with quality control, alignment, and quantification steps
GPU-Accelerated Protein Folding
Deploy AlphaFold or custom GPU workflows for protein structure prediction
Data Organization and Tracking
Set up structured data management with Registry for sample tracking and metadata
Overview
LatchBio Integration
Overview
Latch is a Python framework for building and deploying bioinformatics workflows as serverless pipelines. Built on Flyte, create workflows with @workflow/@task decorators, manage cloud data with LatchFile/LatchDir, configure resources, and integrate Nextflow/Snakemake pipelines.
Core Capabilities
The Latch platform provides four main areas of functionality:
1. Workflow Creation and Deployment
- Define serverless workflows using Python decorators
- Support for native Python, Nextflow, and Snakemake pipelines
- Automatic containerization with Docker
- Auto-generated no-code user interfaces
- Version control and reproducibility
2. Data Management
- Cloud storage abstractions (LatchFile, LatchDir)
- Structured data organization with Registry (Projects → Tables → Records)
- Type-safe data operations with links and enums
- Automatic file transfer between local and cloud
- Glob pattern matching for file selection
3. Resource Configuration
- Pre-configured task decorators (@small_task, @large_task, @small_gpu_task, @large_gpu_task)
- Custom resource specifications (CPU, memory, GPU, storage)
- GPU support (K80, V100, A100)
- Timeout and storage configuration
- Cost optimization strategies
4. Verified Workflows
- Production-ready pre-built pipelines
- Bulk RNA-seq, DESeq2, pathway analysis
- AlphaFold and ColabFold for protein structure prediction
- Single-cell tools (ArchR, scVelo, emptyDropsR)
- CRISPR analysis, phylogenetics, and more
Quick Start
Installation and Setup
1# Install Latch SDK
2python3 -m uv pip install latch
3
4# Login to Latch
5latch login
6
7# Initialize a new workflow
8latch init my-workflow
9
10# Register workflow to platform
11latch register my-workflow
Prerequisites:
- Docker installed and running
- Latch account credentials
- Python 3.8+
Basic Workflow Example
1from latch import workflow, small_task
2from latch.types import LatchFile
3
4@small_task
5def process_file(input_file: LatchFile) -> LatchFile:
6 """Process a single file"""
7 # Processing logic
8 return output_file
9
10@workflow
11def my_workflow(input_file: LatchFile) -> LatchFile:
12 """
13 My bioinformatics workflow
14
15 Args:
16 input_file: Input data file
17 """
18 return process_file(input_file=input_file)
When to Use This Skill
This skill should be used when encountering any of the following scenarios:
Workflow Development:
- “Create a Latch workflow for RNA-seq analysis”
- “Deploy my pipeline to Latch”
- “Convert my Nextflow pipeline to Latch”
- “Add GPU support to my workflow”
- Working with
@workflow,@taskdecorators
Data Management:
- “Organize my sequencing data in Latch Registry”
- “How do I use LatchFile and LatchDir?”
- “Set up sample tracking in Latch”
- Working with
latch:///paths
Resource Configuration:
- “Configure GPU for AlphaFold on Latch”
- “My task is running out of memory”
- “How do I optimize workflow costs?”
- Working with task decorators
Verified Workflows:
- “Run AlphaFold on Latch”
- “Use DESeq2 for differential expression”
- “Available pre-built workflows”
- Using
latch.verifiedmodule
Detailed Documentation
This skill includes comprehensive reference documentation organized by capability:
references/workflow-creation.md
Read this for:
- Creating and registering workflows
- Task definition and decorators
- Supporting Python, Nextflow, Snakemake
- Launch plans and conditional sections
- Workflow execution (CLI and programmatic)
- Multi-step and parallel pipelines
- Troubleshooting registration issues
Key topics:
latch initandlatch registercommands@workflowand@taskdecorators- LatchFile and LatchDir basics
- Type annotations and docstrings
- Launch plans with preset parameters
- Conditional UI sections
references/data-management.md
Read this for:
- Cloud storage with LatchFile and LatchDir
- Registry system (Projects, Tables, Records)
- Linked records and relationships
- Enum and typed columns
- Bulk operations and transactions
- Integration with workflows
- Account and workspace management
Key topics:
latch:///path format- File transfer and glob patterns
- Creating and querying Registry tables
- Column types (string, number, file, link, enum)
- Record CRUD operations
- Workflow-Registry integration
references/resource-configuration.md
Read this for:
- Task resource decorators
- Custom CPU, memory, GPU configuration
- GPU types (K80, V100, A100)
- Timeout and storage settings
- Resource optimization strategies
- Cost-effective workflow design
- Monitoring and debugging
Key topics:
@small_task,@large_task,@small_gpu_task,@large_gpu_task@custom_taskwith precise specifications- Multi-GPU configuration
- Resource selection by workload type
- Platform limits and quotas
references/verified-workflows.md
Read this for:
- Pre-built production workflows
- Bulk RNA-seq and DESeq2
- AlphaFold and ColabFold
- Single-cell analysis (ArchR, scVelo)
- CRISPR editing analysis
- Pathway enrichment
- Integration with custom workflows
Key topics:
latch.verifiedmodule imports- Available verified workflows
- Workflow parameters and options
- Combining verified and custom steps
- Version management
Common Workflow Patterns
Complete RNA-seq Pipeline
1from latch import workflow, small_task, large_task
2from latch.types import LatchFile, LatchDir
3
4@small_task
5def quality_control(fastq: LatchFile) -> LatchFile:
6 """Run FastQC"""
7 return qc_output
8
9@large_task
10def alignment(fastq: LatchFile, genome: str) -> LatchFile:
11 """STAR alignment"""
12 return bam_output
13
14@small_task
15def quantification(bam: LatchFile) -> LatchFile:
16 """featureCounts"""
17 return counts
18
19@workflow
20def rnaseq_pipeline(
21 input_fastq: LatchFile,
22 genome: str,
23 output_dir: LatchDir
24) -> LatchFile:
25 """RNA-seq analysis pipeline"""
26 qc = quality_control(fastq=input_fastq)
27 aligned = alignment(fastq=qc, genome=genome)
28 return quantification(bam=aligned)
GPU-Accelerated Workflow
1from latch import workflow, small_task, large_gpu_task
2from latch.types import LatchFile
3
4@small_task
5def preprocess(input_file: LatchFile) -> LatchFile:
6 """Prepare data"""
7 return processed
8
9@large_gpu_task
10def gpu_computation(data: LatchFile) -> LatchFile:
11 """GPU-accelerated analysis"""
12 return results
13
14@workflow
15def gpu_pipeline(input_file: LatchFile) -> LatchFile:
16 """Pipeline with GPU tasks"""
17 preprocessed = preprocess(input_file=input_file)
18 return gpu_computation(data=preprocessed)
Registry-Integrated Workflow
1from latch import workflow, small_task
2from latch.registry.table import Table
3from latch.registry.record import Record
4from latch.types import LatchFile
5
6@small_task
7def process_and_track(sample_id: str, table_id: str) -> str:
8 """Process sample and update Registry"""
9 # Get sample from registry
10 table = Table.get(table_id=table_id)
11 records = Record.list(table_id=table_id, filter={"sample_id": sample_id})
12 sample = records[0]
13
14 # Process
15 input_file = sample.values["fastq_file"]
16 output = process(input_file)
17
18 # Update registry
19 sample.update(values={"status": "completed", "result": output})
20 return "Success"
21
22@workflow
23def registry_workflow(sample_id: str, table_id: str):
24 """Workflow integrated with Registry"""
25 return process_and_track(sample_id=sample_id, table_id=table_id)
Best Practices
Workflow Design
- Use type annotations for all parameters
- Write clear docstrings (appear in UI)
- Start with standard task decorators, scale up if needed
- Break complex workflows into modular tasks
- Implement proper error handling
Data Management
- Use consistent folder structures
- Define Registry schemas before bulk entry
- Use linked records for relationships
- Store metadata in Registry for traceability
Resource Configuration
- Right-size resources (don’t over-allocate)
- Use GPU only when algorithms support it
- Monitor execution metrics and optimize
- Design for parallel execution when possible
Development Workflow
- Test locally with Docker before registration
- Use version control for workflow code
- Document resource requirements
- Profile workflows to determine actual needs
Troubleshooting
Common Issues
Registration Failures:
- Ensure Docker is running
- Check authentication with
latch login - Verify all dependencies in Dockerfile
- Use
--verboseflag for detailed logs
Resource Problems:
- Out of memory: Increase memory in task decorator
- Timeouts: Increase timeout parameter
- Storage issues: Increase ephemeral storage_gib
Data Access:
- Use correct
latch:///path format - Verify file exists in workspace
- Check permissions for shared workspaces
Type Errors:
- Add type annotations to all parameters
- Use LatchFile/LatchDir for file/directory parameters
- Ensure workflow return type matches actual return
Additional Resources
- Official Documentation: https://docs.latch.bio
- GitHub Repository: https://github.com/latchbio/latch
- Slack Community: Join Latch SDK workspace
- API Reference: https://docs.latch.bio/api/latch.html
- Blog: https://blog.latch.bio
Support
For issues or questions:
- Check documentation links above
- Search GitHub issues
- Ask in Slack community
- Contact support@latch.bio
What Users Are Saying
Real feedback from the community
Environment Matrix
Dependencies
Framework Support
Context Window
Security & Privacy
Information
- Author
- davila7
- Updated
- 2026-01-30
- Category
- productivity-tools
Related Skills
Latchbio Integration
Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task …
View Details →Dnanexus Integration
DNAnexus cloud genomics platform. Build apps/applets, manage data (upload/download), dxpy Python …
View Details →Dnanexus Integration
DNAnexus cloud genomics platform. Build apps/applets, manage data (upload/download), dxpy Python …
View Details →