Data & ReproBioinformatics & GenomicsFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-machine-learning-omics-classifiers

Maintainer FreedomIntelligence · Last updated April 1, 2026

Train classifiers on omics data: random forest, SVM, XGBoost.

OpenClawNanoClawAnalysisReproductionbio-machine-learning-omics-classifiers🧠 bioos extended suitebioos extended bioinformatics suitetrain

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-machine-learning-omics-classifiers

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • xgb = XGBClassifier( n_estimators=100, max_depth=6, learning_rate=0.1, random_state=42, # NOT seed n_jobs=-1, # NOT nthread eval_metric='logloss' ).
  • pipe = Pipeline([('scaler', StandardScaler()), ('clf', xgb)]) pipe.fit(X_train, y_train).
  • logit = LogisticRegressionCV( Cs=10, cv=5, penalty='l1', solver='saga', max_iter=1000, random_state=42 ) pipe = Pipeline([('scaler', StandardScaler()), ('clf', logit)]) pipe.fit(X_train, y_train).

Source Doc

Excerpt From SKILL.md

XGBoost Classifier

from xgboost import XGBClassifier

## Logistic Regression with Regularization

```python
from sklearn.linear_model import LogisticRegressionCV

## Get selected features (nonzero coefficients)

feature_mask = logit.coef_[0] != 0
selected = X.columns[feature_mask]

Use cases

  • Use bio-machine-learning-omics-classifiers for genomics and bioinformatics workflows.
  • Apply bio-machine-learning-omics-classifiers to sequencing, variant, or omics analysis tasks.

Not for

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

Upstream Related Skills

  • machine-learning/model-validation - Proper model evaluation
  • machine-learning/prediction-explanation - Explain predictions with SHAP
  • machine-learning/biomarker-discovery - Reduce features before modeling

Related skills

Related skills

Back to directory
AG
Data & ReproBioinformatics & Genomics

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test w…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
AL
Data & ReproBioinformatics & Genomics

alpha-vantage

Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ technical indicators.

Claude CodeAnalysis
K-Dense-AI/claude-scientific-skillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-filtering

Filter alignments by flag, quality, region, or paired status.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-indexing

Index BAM/CRAM files with samtools index for random access.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView