Agent skill · Data & Analytics

bio-multi-omics-data-harmonization

Preprocessing and harmonization of multi-omics data before integration. Covers normalization, batch correction, feature alignment, and missing value handling across data types. Use when preparing multi-omics datasets for integration analysis.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-multi-omics-data-harmonization --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/bio-multi-omics-data-harmonization/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: DESeq2 1.42+ Before using code patterns, verify installed versions match. If versions differ: - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Data Harmonization for Multi-Omics **"Prepare my multi-omics data for integration"** → Normalize, batch-correct, align features, and handle missing values across RNA-seq, proteomics, methylation, and other data types before joint analysis. - R: `MultiAssayExperiment` for unified multi-omics containers ## MultiAssayExperiment Structure ```r library(MultiAssayExperiment) # Load individual assays rna <- SummarizedExperiment(assays = list(counts = rna_matrix), colData = sample_info) protein <- SummarizedExperiment(assays = list(intensity = protein_matrix), colData = sample_info) methylation <- SummarizedExperiment(assays = list(beta = meth_matrix), colData = sample_info) # Create experiment list exp_list <- ExperimentList(RNA = rna, Protein = protein, Methylation = methylation) # Sample map (links samples t

What's inside
Steps it walks through
  1. Version Compatibility
  2. MultiAssayExperiment Structure
  3. Normalization Per Assay
  4. Cross-Omics Batch Correction
  5. Feature Alignment (Gene-Level)
  6. Missing Value Handling
  7. Sample Matching and Subsetting
  8. Scale and Center
  9. Export Harmonized Data
  10. Related Skills
Ships with 2 files
  • examples/harmonize_data.R
  • usage-guide.md
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-multi-omics-data-harmonization skill do?

Preprocessing and harmonization of multi-omics data before integration. Covers normalization, batch correction, feature alignment, and missing value handling across data types. Use when preparing multi-omics datasets for integration analysis.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-multi-omics-data-harmonization --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going