LLM-powered bioinformatics pipeline generation from natural language
Project description
LLMomics
LLMomics is an open-source Python library that leverages Large Language Models (LLMs) to automatically generate complete bioinformatics pipelines from natural language queries. It dramatically reduces the technical barrier for researchers who need to perform omics analyses (genomics, transcriptomics, proteomics, metabolomics) without extensive computational expertise.
Features
- Natural Language Interface: Generate pipelines from simple English queries
- Multi-Omics Support: RNA-seq, ChIP-seq, ATAC-seq, variant calling, and more
- Public Database Integration: Automatic data fetching from GEO, SRA, and other repositories
- Production-Ready Pipelines: Generates complete Snakemake workflows with proper logging and error handling
- Extensible Architecture: Easy to add new pipeline templates and data sources
- Smart Query Parsing: Automatically extracts dataset IDs, tools, and parameters from queries
Table of Contents
Installation
Prerequisites
- Python 3.8 or higher
- OpenAI API key (for LLM functionality)
Install from source
# Clone the repository
git clone https://github.com/allanps/llmomics.git
cd llmomics
# Install in development mode
pip install -e .
# Or install directly
pip install .
Set up environment variables
Create a .env file in your project directory:
# Required
OPENAI_API_KEY=your_openai_api_key_here
# Optional (for enhanced NCBI access)
NCBI_EMAIL=your.email@example.com
NCBI_API_KEY=your_ncbi_api_key_here
Quick Start
Basic Usage
Generate a complete RNA-seq differential expression pipeline with a single command:
llmomics run "Perform differential expression analysis with DESeq2 on GSE123456"
This command will:
- Parse your natural language query
- Fetch dataset information from GEO
- Generate a complete Snakemake pipeline
- Create all necessary configuration files
- Provide clear instructions for running the analysis
Search for Datasets
# Search across all databases
llmomics search "RNA-seq liver cancer"
# Search specific database
llmomics search "breast cancer" --database geo --limit 20
Fetch Dataset Information
# Automatically detect database from ID
llmomics fetch GSE123456
# Specify database explicitly
llmomics fetch SRR999999 --database sra
Check Configuration
llmomics config
Usage Examples
Example 1: RNA-seq Differential Expression
llmomics run "Analyze RNA-seq data from GSE200366 to find differentially expressed genes between treatment and control groups using DESeq2"
This generates a complete pipeline including:
- Quality control with FastQC
- Read trimming with Trim Galore
- Alignment with STAR
- Gene counting with featureCounts
- Differential expression with DESeq2
- MultiQC report generation
Example 2: ChIP-seq Peak Calling
llmomics run "Perform ChIP-seq peak calling on H3K27ac data using MACS2"
Example 3: Custom Parameters
llmomics run "RNA-seq analysis with p-value < 0.01 and fold change > 2.5 for GSE123456"
Python API Usage
from llmomics import LLMProvider, DataFetcher, PipelineGenerator
# Initialize components
llm = LLMProvider()
fetcher = DataFetcher()
generator = PipelineGenerator()
# Analyze query
query = "Perform RNA-seq analysis on GSE123456"
analysis = llm.analyze_query(query)
# Fetch dataset
dataset_info = fetcher.fetch("GSE123456")
# Generate pipeline
pipeline_path = generator.generate(
pipeline_type="rna-seq",
analysis_type="differential-expression",
dataset_info=dataset_info
)
Configuration
LLMomics uses a flexible configuration system with the following hierarchy:
- Environment variables (highest priority)
.envfile in current directory- Default values
Key Configuration Options
| Setting | Environment Variable | Default | Description |
|---|---|---|---|
| LLM Provider | LLM_PROVIDER |
openai |
LLM service to use |
| OpenAI API Key | OPENAI_API_KEY |
Required | Your OpenAI API key |
| OpenAI Model | OPENAI_MODEL |
gpt-4 |
Model to use |
| Output Directory | LLMOMICS_OUTPUT_DIR |
./pipelines |
Where to save pipelines |
| NCBI Email | NCBI_EMAIL |
None | Email for NCBI API |
Architecture
graph TD
A[Natural Language Query] --> B[Query Parser]
B --> C[LLM Analysis]
C --> D[Data Fetcher]
D --> E[Pipeline Generator]
E --> F[Snakemake Pipeline]
D --> G[GEO Database]
D --> H[SRA Database]
C --> I[OpenAI API]
Core Modules
core: LLM communication and query processingdata: Integration with bioinformatics databasespipeline: Snakemake pipeline generation
Contributing
We welcome contributions! Please see our Contributing Guidelines for details.
Development Setup
# Clone the repository
git clone https://github.com/allanps/llmomics.git
cd llmomics
# Install in development mode with dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Format code
black src/
# Run linting
flake8 src/
Documentation
For detailed documentation, visit our documentation site.
Citation
If you use LLMomics in your research, please cite:
@software{llmomics2025,
title = {LLMomics: LLM-powered bioinformatics pipeline generation},
author = {Allan Paulo},
year = {2025},
url = {https://github.com/allanps/llmomics}
}
Issues and Support
- Report bugs at GitHub Issues
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llmomics-0.1.0.tar.gz.
File metadata
- Download URL: llmomics-0.1.0.tar.gz
- Upload date:
- Size: 27.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.5 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2146973e0e158f5945745d962cf56ca17201afd15771277bcd7cccc55dadf834
|
|
| MD5 |
a80044712211c10fc8cfb223790dc7b2
|
|
| BLAKE2b-256 |
13306305d678e8faf32937a587ad90f9127beeb355c28a68c05bf277f48711e9
|
File details
Details for the file llmomics-0.1.0-py3-none-any.whl.
File metadata
- Download URL: llmomics-0.1.0-py3-none-any.whl
- Upload date:
- Size: 30.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.5 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d41eda1ac29bbde689d98b73e8cbdfa7d0fabc87aa721909d87af45cbf12dc38
|
|
| MD5 |
dac8af8cf5e6e5b8d882588b515144bc
|
|
| BLAKE2b-256 |
daa776f7d2d1d96e4ae828b07f2846fe8f0472f3555d0aa27f658ebc2bcdc6d3
|