agentsclimarketplace

Bio research tools biomarker signature studio

Skill bg-szy/TOP-SKILLS/skills/awesome-skills/bio-research-tools-biomarker-signature-studio

全球最大的 Claude Code 技能聚合库 · 收录 3900+ 来自 12+ 来源的技能,提供在线搜索与趋势分析看板 / The world's largest Claude Code skill aggregation hub — 3900+ skills from 12+ sources with online search and trend dashboard

Install
npx -y skills add bg-szy/TOP-SKILLS --skill bio-research-tools-biomarker-signature-studio

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Multi-omic biomarker discovery studio that ingests expression + metadata, performs QC, multi-strategy feature selection, nested CV model training, survival analysis hooks, and SHAP-based interpretation. Use to design translational biomarker panels with documented evidence.

SKILL.md

4.5 KB, as published. Nobody here has run it

<!-- # COPYRIGHT NOTICE # This file is part of the "Universal Biomedical Skills" project. # Copyright (c) 2026 MD BABU MIA, PhD <[email protected]> # All Rights Reserved. # # This code is proprietary and confidential. # Unauthorized copying of this file, via any medium is strictly prohibited. # # Provenance: Authenticated by MD BABU MIA -->

Biomarker Signature Studio

Design validated biomarker panels that are explainable, stable, and ready for translational follow-up. This skill stitches together the existing biomarker pipeline tooling, adds configurable feature-selection ensembles, a small survival-analysis hook, and artifact export so downstream lab teams can review QC outputs.

What This Skill Does

  1. QC + Harmonization: Align expression matrices (samples x features) with metadata, check label balance, and compute summary stats.
  2. Feature Selection Ensemble: Supports Boruta, elastic-net stability, mutual-information top-K, and mRMR with optional intersection voting.
  3. Model Factory: Trains multiple estimators (Logistic L1, RandomForest, XGBoost if present) under nested CV, picks champion by AUC.
  4. Explainability + Export: Produces SHAP tables/plots when packages are available, exports feature rankings and model weights.
  5. Survival Hook: If metadata contains time_to_event and event the skill computes concordance for selected features via Cox model.

All logic lives in scripts/biomarker_signature_studio.py.

Inputs

  • Expression matrix (--expression): CSV/TSV genes x samples or samples x genes (auto-detected by metadata match).
  • Metadata (--metadata): Must contain --label-column. Optional --id-column (default sample_id), time_to_event, event.
  • Optional gene list for filtering (--feature-list).
  • Output directory (--output-dir), created if missing.

Quick CLI Usage

python Skills/Research_Tools/Biomarker_Signature_Studio/scripts/biomarker_signature_studio.py \
  --expression data/expression.csv \
  --metadata data/metadata.csv \
  --label-column phenotype \
  --selectors boruta,lasso,mrmr \
  --models rf,logit \
  --output-dir outputs/biomarkers_run1

Key flags:

FlagDescription
--selectorsComma list of selection strategies (boruta, lasso, mrmr, mi_topk).
--modelsModels to evaluate (logit, rf, xgb).
--k-featuresTarget number of features for mrmr/mi_topk.
--survivalEnable Cox evaluation when survival columns exist.
--random-stateReproducibility.
--nested-foldsOuter CV folds (default 5).

Workflow

  1. Load + align inputs, infer orientation, impute missing values.
  2. Standardize features (fit on train set only).
  3. Run requested selectors; create intersection + union candidate lists.
  4. For each selector output run nested CV training across requested models.
  5. Export champion metrics (metrics.json), feature table (selected_features.csv), SHAP summary (shap_summary.csv when available), and survival stats (survival.json).

QC Expectations

  • Class count ratio ≤3:1; warnings logged otherwise.
  • Selected features between 5 and 250 unless user overrides.
  • Nested CV AUC ≥0.70 or flagged in report.
  • SHAP overlap with selected features ≥60% (reported).

Related Assets

  • examples/configs/biomarker_studio_template.yaml (scaffold for teams)
  • scripts/biomarker_signature_studio.py (entry point)
  • Existing biomarker workflow skill for orchestrated runs.

Use this skill whenever you need a ready-to-review biomarker dossier (data QC, model metrics, explainability artifacts) before moving to validation cohorts or lab assays.

<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.