New to Claude Skills? Learn how to install them →

mims-harvard on GitHub

Multi-Omics Integration

Free

Integrate diverse omics data for systems biology insights.

Get this skill

Free · Opens the source repo

What Multi-Omics Integration does

Multi-Omics Integration is designed for researchers and analysts working with various omics datasets, enabling the coordination and integration of multiple molecular layers such as transcriptomics, proteomics, epigenomics, genomics, and metabolomics. This skill orchestrates specialized ToolUniverse capabilities to facilitate cross-omics correlation, multi-omics clustering, and pathway-level integration, providing a comprehensive framework for systems biology analysis.

The workflow begins with loading and quality control of each omics type, ensuring that the data is formatted correctly and normalized. Following this, samples are matched across datasets, allowing for a unified analysis. The skill provides tools for feature mapping to common identifiers, enabling users to explore relationships between different omics layers, such as how methylation impacts gene expression or how protein levels correlate with RNA expression.

Once the data is harmonized, users can perform multi-omics clustering to identify patient subtypes or shared biological drivers. Pathway-level integration aggregates evidence across omics, scoring dysregulation within biological pathways. The final output is an integrated report summarizing correlations, clusters, and potential biomarkers, making it a powerful tool for precision medicine applications and biomarker discovery.

This skill is particularly beneficial for those engaged in systems biology, drug response studies, or any research requiring a multi-faceted view of biological data. By enabling a detailed exploration of how various omics datasets interact, it opens up new avenues for understanding complex biological questions.

When to use it

Use this skill when you have multiple omics datasets and need to perform integrative analyses, such as biomarker discovery or systems biology investigations.

When not to use it

This skill may not be suitable for single-omics analyses or when the datasets do not require integration across multiple molecular layers.

What you can build with it

Cancer Multi-Omics

Integrate RNA-seq, proteomics, and methylation data from TCGA to identify patient subtypes and biomarkers.

eQTL and Expression Analysis

Investigate SNP-methylation-expression regulatory chains to understand genetic influences on gene expression.

Drug Response Prediction

Utilize baseline multi-omics profiles to predict patient responses to drugs and identify resistance pathways.

How to install Multi-Omics Integration

View source

1. Install with the skills CLI

npx skills add mims-harvard/tooluniverse/tooluniverse-multi-omics-integration --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by mims-harvard

Multi-Omics Integration

Coordinate and integrate multiple omics datasets for comprehensive systems biology analysis. Orchestrates specialized ToolUniverse skills to perform cross-omics correlation, multi-omics clustering, pathway-level integration, and unified interpretation.


Domain Reasoning

Multi-omics integration asks whether different molecular layers tell a concordant story. If a gene is upregulated in RNA-seq AND its protein is elevated in proteomics, that is concordant evidence of true biological change. Discordance — high mRNA but low protein, or elevated protein without matching mRNA — may indicate post-transcriptional regulation (miRNA silencing, protein degradation, translational control) and is itself a meaningful finding worth reporting. Not every discordance is noise; some are the most interesting biology.

LOOK UP DON'T GUESS

  • Expected RNA-protein correlation ranges: compute Spearman r from the actual data; the typical range (0.4-0.6) is a guide, not a guarantee.
  • Pathway enrichment results: run ReactomeAnalysis_pathway_enrichment or gseapy on the actual gene lists; never list enriched pathways from memory.
  • eQTL associations: query GTEx or eQTL databases for the specific variant and tissue; do not assume regulatory relationships.
  • Methylation-expression directionality at specific loci: retrieve experimental data; promoter repression is the canonical model but exceptions exist.

When to Use This Skill

  • User has multiple omics datasets (RNA-seq + proteomics, methylation + expression, etc.)
  • Cross-omics correlation queries (e.g., "How does methylation affect expression?")
  • Multi-omics biomarker discovery or patient subtyping
  • Systems biology questions requiring multiple molecular layers
  • Precision medicine applications with multi-omics patient data

Workflow Overview

Phase 1: Data Loading & QC
  Load each omics type, format-specific QC, normalize
  Supported: RNA-seq, proteomics, methylation, CNV/SNV, metabolomics

Phase 2: Sample Matching
  Harmonize sample IDs, find common samples, handle missing omics

Phase 3: Feature Mapping
  Map features to common gene-level identifiers
  CpG->gene (promoter), CNV->gene, metabolite->enzyme

Phase 4: Cross-Omics Correlation
  RNA vs Protein (translation efficiency)
  Methylation vs Expression (epigenetic regulation)
  CNV vs Expression (dosage effect)
  eQTL variants vs Expression (genetic regulation)

Phase 5: Multi-Omics Clustering
  MOFA+, NMF, SNF for patient subtyping

Phase 6: Pathway-Level Integration
  Aggregate omics evidence at pathway level
  Score pathway dysregulation with combined evidence

Phase 7: Biomarker Discovery
  Feature selection across omics, multi-omics classification

Phase 8: Integrated Report
  Summary, correlations, clusters, pathways, biomarkers

See: phase_details.md for complete code and implementation details.


Supported Data Types

OmicsFormatsQC Focus
TranscriptomicsCSV/TSV, HDF5, h5adLow-count filter, normalize (TPM/DESeq2), log-transform
ProteomicsMaxQuant, Spectronaut, DIA-NNMissing value imputation, median/quantile normalization
MethylationIDAT, beta matricesFailed probes, batch correction, cross-reactive filter
GenomicsVCF, SEG (CNV)Variant QC, CNV segmentation
MetabolomicsPeak tablesMissing values, normalization

Core Operations

Sample Matching

def match_samples_across_omics(omics_data_dict):
    """Match samples across multiple omics datasets."""
    sample_ids = {k: set(df.columns) for k, df in omics_data_dict.items()}
    common_samples = set.intersection(*sample_ids.values())
    matched_data = {k: df[sorted(common_samples)] for k, df in omics_data_dict.items()}
    return sorted(common_samples), matched_data

Cross-Omics Correlation

from scipy.stats import spearmanr, pearsonr

# RNA vs Protein: expect positive r ~ 0.4-0.6
# Methylation vs Expression: expect negative r (promoter repression)
# CNV vs Expression: expect positive r (dosage effect)

for gene in common_genes:
    r, p = spearmanr(rna[gene], protein[gene])

Pathway Integration

# Score pathway dysregulation using combined evidence from all omics
# Aggregate per-gene evidence, then per-pathway
pathway_score = mean(abs(rna_fc) + abs(protein_fc) + abs(meth_diff) + abs(cnv))

See: phase_details.md for full implementations of each operation.


Multi-Omics Clustering Methods

MethodDescriptionBest For
MOFA+Latent factors explaining cross-omics variationIdentifying shared/omics-specific drivers
Joint NMFShared decomposition across omicsPatient subtype discovery
SNFSimilarity network fusionIntegrating heterogeneous data types

ToolUniverse Skills Coordination

SkillUsed ForPhase
tooluniverse-rnaseq-deseq2RNA-seq analysis1, 4
tooluniverse-epigenomicsMethylation, ChIP-seq1, 4
tooluniverse-variant-analysisCNV/SNV processing1, 3, 4
tooluniverse-protein-interactionsProtein network context6
tooluniverse-gene-enrichmentPathway enrichment6
tooluniverse-expression-data-retrievalPublic data retrieval1
tooluniverse-target-researchGene/protein annotation3, 8

Use Cases

Cancer Multi-Omics

Integrate TCGA RNA-seq + proteomics + methylation + CNV to identify patient subtypes, cross-omics driver genes, and multi-omics biomarkers.

eQTL + Expression + Methylation

Identify SNP -> methylation -> expression regulatory chains (mediation analysis).

Drug Response Multi-Omics

Predict drug response using baseline multi-omics profiles; identify resistance/sensitivity pathways.

See: phase_details.md "Use Cases" for detailed step-by-step workflows.


Quantified Minimums

ComponentRequirement
Omics typesAt least 2 datasets
Common samplesAt least 10 across omics
Cross-correlationPearson/Spearman computed
ClusteringAt least one method (MOFA+, NMF, or SNF)
Pathway integrationEnrichment with multi-omics evidence scores
ReportSummary, correlations, clusters, pathways, biomarkers

Limitations

  • Sample size: n >= 20 recommended for integration
  • Missing data: Pairwise integration if not all samples have all omics
  • Batch effects: Different platforms require careful normalization
  • Computational: Large datasets may require significant memory
  • Interpretation: Results require domain expertise for validation

References


Detailed Reference

  • phase_details.md - Complete code for all phases, correlation functions, clustering, pathway integration, biomarker discovery, report template, and detailed use cases

Frequently asked questions about Multi-Omics Integration

Similar skills