bio-metabolomics-lipidomics
Specialized lipidomics analysis for lipid identification, quantification, and pathway interpretation. Covers LC-MS lipidomics with LipidSear…
Maintainer FreedomIntelligence · Last updated April 1, 2026
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.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-metabolomics-targeted-analysis
Skill Snapshot
Source Doc
quant_data <- skyline_data %>% filter(Quantitative == TRUE | is.na(Quantitative))
intensity_matrix <- quant_data %>% select(Replicate, Molecule, Area) %>% pivot_wider(names_from = Replicate, values_from = Area)
## 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)
)
Related skills
Specialized lipidomics analysis for lipid identification, quantification, and pathway interpretation. Covers LC-MS lipidomics with LipidSear…
Metabolite identification from m/z and retention time. Covers database matching, MS/MS spectral matching, and confidence level assignment. U…
MS-DIAL-based metabolomics preprocessing as alternative to XCMS. Covers peak detection, alignment, annotation, and export for downstream ana…
Map metabolites to biological pathways using KEGG, Reactome, and MetaboAnalyst. Perform pathway enrichment and topology analysis. Use when i…