name: bio-research-tools-biomarker-signature-studio
description: 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.
tool_type: python
primary_tool: scikit-learn
depends_on:
- machine-learning/biomarker-discovery
- machine-learning/model-validation
- machine-learning/omics-classifiers
- differential-expression/de-results
- workflow-management/biomarker-pipeline
measurable_outcome: Run biomarker_signature_studio.py end-to-end on provided data within 20 minutes and produce metrics + feature rankings JSON artifacts.
allowed-tools:
- read_file
- run_shell_command
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
- QC + Harmonization: Align expression matrices (samples x features) with metadata, check label balance, and compute summary stats.
- Feature Selection Ensemble: Supports Boruta, elastic-net stability, mutual-information top-K, and mRMR with optional intersection voting.
- Model Factory: Trains multiple estimators (Logistic L1, RandomForest, XGBoost if present) under nested CV, picks champion by AUC.
- Explainability + Export: Produces SHAP tables/plots when packages are available, exports feature rankings and model weights.
- 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:
| Flag |
Description |
--selectors |
Comma list of selection strategies (boruta, lasso, mrmr, mi_topk). |
--models |
Models to evaluate (logit, rf, xgb). |
--k-features |
Target number of features for mrmr/mi_topk. |
--survival |
Enable Cox evaluation when survival columns exist. |
--random-state |
Reproducibility. |
--nested-folds |
Outer CV folds (default 5). |
Workflow
- Load + align inputs, infer orientation, impute missing values.
- Standardize features (fit on train set only).
- Run requested selectors; create intersection + union candidate lists.
- For each selector output run nested CV training across requested models.
- 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.
1---2name: bio-research-tools-biomarker-signature-studio3description: <!--4---5<!--6# COPYRIGHT NOTICE7# This file is part of the "Universal Biomedical Skills" project.8# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>9# All Rights Reserved.10#11# This code is proprietary and confidential.12# Unauthorized copying of this file, via any medium is strictly prohibited.13#14# Provenance: Authenticated by MD BABU MIA1516-->1718---19name: bio-research-tools-biomarker-signature-studio20description: 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.21tool_type: python22primary_tool: scikit-learn23depends_on:24 - machine-learning/biomarker-discovery25 - machine-learning/model-validation26 - machine-learning/omics-classifiers27 - differential-expression/de-results28 - workflow-management/biomarker-pipeline29measurable_outcome: Run biomarker_signature_studio.py end-to-end on provided data within 20 minutes and produce metrics + feature rankings JSON artifacts.30allowed-tools:31 - read_file32 - run_shell_command33---3435# Biomarker Signature Studio3637Design 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.3839## What This Skill Does40411. **QC + Harmonization:** Align expression matrices (samples x features) with metadata, check label balance, and compute summary stats.422. **Feature Selection Ensemble:** Supports Boruta, elastic-net stability, mutual-information top-K, and mRMR with optional intersection voting.433. **Model Factory:** Trains multiple estimators (Logistic L1, RandomForest, XGBoost if present) under nested CV, picks champion by AUC.444. **Explainability + Export:** Produces SHAP tables/plots when packages are available, exports feature rankings and model weights.455. **Survival Hook:** If metadata contains `time_to_event` and `event` the skill computes concordance for selected features via Cox model.4647All logic lives in `scripts/biomarker_signature_studio.py`.4849## Inputs5051- Expression matrix (`--expression`): CSV/TSV genes x samples or samples x genes (auto-detected by metadata match).52- Metadata (`--metadata`): Must contain `--label-column`. Optional `--id-column` (default `sample_id`), `time_to_event`, `event`.53- Optional gene list for filtering (`--feature-list`).54- Output directory (`--output-dir`), created if missing.5556## Quick CLI Usage5758```bash59python Skills/Research_Tools/Biomarker_Signature_Studio/scripts/biomarker_signature_studio.py \60 --expression data/expression.csv \61 --metadata data/metadata.csv \62 --label-column phenotype \63 --selectors boruta,lasso,mrmr \64 --models rf,logit \65 --output-dir outputs/biomarkers_run166```6768Key flags:6970| Flag | Description |71|------|-------------|72| `--selectors` | Comma list of selection strategies (`boruta`, `lasso`, `mrmr`, `mi_topk`). |73| `--models` | Models to evaluate (`logit`, `rf`, `xgb`). |74| `--k-features` | Target number of features for `mrmr`/`mi_topk`. |75| `--survival` | Enable Cox evaluation when survival columns exist. |76| `--random-state` | Reproducibility. |77| `--nested-folds` | Outer CV folds (default 5). |7879## Workflow80811. Load + align inputs, infer orientation, impute missing values.822. Standardize features (fit on train set only).833. Run requested selectors; create intersection + union candidate lists.844. For each selector output run nested CV training across requested models.855. Export champion metrics (`metrics.json`), feature table (`selected_features.csv`), SHAP summary (`shap_summary.csv` when available), and survival stats (`survival.json`).8687## QC Expectations8889- Class count ratio ≤3:1; warnings logged otherwise.90- Selected features between 5 and 250 unless user overrides.91- Nested CV AUC ≥0.70 or flagged in report.92- SHAP overlap with selected features ≥60% (reported).9394## Related Assets9596- `examples/configs/biomarker_studio_template.yaml` (scaffold for teams)97- `scripts/biomarker_signature_studio.py` (entry point)98- Existing biomarker workflow skill for orchestrated runs.99100Use 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.101102103<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->