Agent skill · Code Review & Quality

bio-metabolomics-targeted-analysis

Targeted metabolomics analysis using MRM/SRM with standard curves. Covers absolute quantification, method validation, and quality assessment. Use when quantifying specific metabolites using calibration curves and internal standards.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill targeted-analysis --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/analysis/targeted-analysis/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Targeted Metabolomics Analysis ## Skyline Data Export Processing ```r library(tidyverse) # Load Skyline export skyline_data <- read.csv('skyline_export.csv') # Expected columns: Replicate, Peptide/Molecule, Area, Concentration (for standards) colnames(skyline_data) # Filter to quantifier transitions quant_data <- skyline_data %>% filter(Quantitative == TRUE | is.na(Quantitative)) # Pivot to matrix format intensity_matrix <- quant_data %>% select(Replicate, Molecule, Area) %>% pivot_wider(names_from = Replicate, values_from = Area) ``` ## Standard Curve Fitting ```r # Standard curve data standards <- data.frame( concentration = c(0, 1, 5, 10, 50, 100, 500, 1000), # nM area = c(100, 5000, 25000, 50000, 240000, 480000, 2300000, 4500000) ) # Linear regression (log-log for wide range) fit_linear <- lm(area ~ concentration, data = standards) fit_loglog <- lm(log10(area) ~ log10(concentration + 1), data = standards) # Weighted linear regression (1/x^2 weighting) fit_weighted <- lm(area ~ concentration, data = standards, weights = 1 / (standards$concentration + 1)^2) # R-squared summary(fit_linear)$r.squared summary(fit_weighted)$r.squared # Plot standard curve ggplot(standards, aes(x =

What's inside
Steps it walks through
  1. Skyline Data Export Processing
  2. Standard Curve Fitting
  3. Calculate Concentrations
  4. Internal Standard Normalization
  5. Method Validation Metrics
  6. Limit of Detection/Quantification
  7. Multi-Compound Analysis
  8. Python Workflow
  9. Quality Control
  10. Export Results
  11. Related Skills
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the bio-metabolomics-targeted-analysis skill do?

Targeted metabolomics analysis using MRM/SRM with standard curves. Covers absolute quantification, method validation, and quality assessment. Use when quantifying specific metabolites using calibration curves and internal standards.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill targeted-analysis --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 majiayu000/claude-skill-registry, a repository with 534 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