Data & ReproProteomics & MetabolomicsFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-workflows-proteomics-pipeline

Maintainer FreedomIntelligence · Last updated April 1, 2026

DDA/DIA proteomics: search → quantification → differential abundance.

OpenClawNanoClawAnalysisReproductionbio-workflows-proteomics-pipeline🧠 bioos extended suitebioos extended bioinformatics suitedda

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-workflows-proteomics-pipeline

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • proteins <- read.delim('proteinGroups.txt', stringsAsFactors = FALSE) cat('Loaded', nrow(proteins), 'protein groups\n').
  • proteins <- proteins[proteins$Potential.contaminant!= '+' & proteins$Reverse!= '+' & proteins$Only.identified.by.site!= '+', ] cat('After filtering:', nrow(proteins), 'proteins\n').

Source Doc

Excerpt From SKILL.md

Complete R Workflow

library(limma)
library(ggplot2)
library(pheatmap)

## Extract LFQ intensities

lfq_cols <- grep('^LFQ\\.intensity\\.', colnames(proteins), value = TRUE)
intensities <- proteins[, lfq_cols]
rownames(intensities) <- proteins$Majority.protein.IDs
colnames(intensities) <- gsub('LFQ\\.intensity\\.', '', colnames(intensities))

## === 2. LOG2 TRANSFORM & NORMALIZE ===

intensities[intensities == 0] <- NA
log2_int <- log2(intensities)

Use cases

  • Use bio-workflows-proteomics-pipeline in research workflows aligned with this subject area.
  • Follow the upstream documentation for the full working procedure.

Not for

  • Do not rely on this catalog entry alone for installation or maintenance details.

Upstream Related Skills

  • proteomics/data-import - Load MS data formats
  • proteomics/proteomics-qc - Quality control before analysis
  • proteomics/quantification - Normalization methods
  • proteomics/differential-abundance - Statistical testing details
  • proteomics/ptm-analysis - Phosphoproteomics and other PTMs
  • data-visualization/specialized-omics-plots - Volcano plots

Related skills

Related skills

Back to directory
BI
Data & ReproProteomics & Metabolomics

bio-metabolomics-lipidomics

Specialized lipidomics analysis for lipid identification, quantification, and pathway interpretation. Covers LC-MS lipidomics with LipidSear…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproProteomics & Metabolomics

bio-metabolomics-metabolite-annotation

Metabolite identification from m/z and retention time. Covers database matching, MS/MS spectral matching, and confidence level assignment. U…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproProteomics & Metabolomics

bio-metabolomics-msdial-preprocessing

MS-DIAL-based metabolomics preprocessing as alternative to XCMS. Covers peak detection, alignment, annotation, and export for downstream ana…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproProteomics & Metabolomics

bio-metabolomics-pathway-mapping

Map metabolites to biological pathways using KEGG, Reactome, and MetaboAnalyst. Perform pathway enrichment and topology analysis. Use when i…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView