用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LigphiDonk/Oh-my--paper --skill bioinformatics-init-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Search traceable academic papers, download legally accessible PDFs from arXiv and open-access sources, convert PDFs or page images to Markdown with a PaddleOCR layout-parsing API (or local pdfminer fallback), and organize the results into an AI-readable literature library. Use when Claude Code needs to build a paper corpus, batch OCR PDFs to Markdown, ingest real literature into a knowledge base, fetch arXiv or Hugging Face paper leads, or turn a directory of papers into structured Markdown plus metadata.
Delegate complex coding tasks to Claude Code CLI
Delegate coding tasks to OpenAI Codex CLI
基于 SOC 职业分类
正在显示 SKILL.md
| id | bioinformatics-init-analysis |
| name | bioinformatics-init-analysis |
| version | 1.0.0 |
| description | # bioinformatics-init-analysis |
| stages | ["experiment"] |
| tools | ["read_file","search_project","write_file","run_terminal"] |
| summary | # bioinformatics-init-analysis |
| primaryIntent | research |
| intents | ["research"] |
| capabilities | ["research-planning","data-processing"] |
| domains | ["bioinformatics"] |
| keywords | ["bioinformatics-init-analysis","experiment"] |
| source | builtin |
| status | verified |
| upstream | {"repo":"dr-claw","path":"skills/bioinformatics-init-analysis","revision":"8322dc4ef575affaa374aa7922c0a0971c6db7d7"} |
| resourceFlags | {"hasReferences":true,"hasScripts":true,"hasTemplates":false,"hasAssets":false,"referenceCount":4,"scriptCount":10,"templateCount":0,"assetCount":0,"optionalScripts":true} |
Use this skill when the user request matches its research workflow scope. Prefer the bundled resources instead of recreating templates or reference material. Keep outputs traceable to project files, citations, scripts, or upstream evidence.
references/ only when the current task needs the extra detail.scripts/ as optional helpers. Run them only when their dependencies are available, keep outputs in the project workspace, and explain a manual fallback if execution is blocked.A Claude Code plugin that automates initial data analysis for high-dimensional single-cell biology data. Supports CyTOF (mass cytometry), scRNA-seq, and flow cytometry with automatic data type detection and plain-language clinical report generation.
Clone into your Claude Code plugins directory:
git clone https://github.com/<your-username>/bioinformatics-init-analysis.git \
~/.claude/plugins/bioinformatics-init-analysis
pip install scanpy anndata matplotlib seaborn scipy scikit-learn pandas numpy
# Optional: fcsparser (for .fcs flow cytometry files)
Once installed, trigger the skill in Claude Code with phrases like:
python3 scripts/run_pipeline.py <input_path> \
[--data-type auto|cytof|scrnaseq|flow] \
[--subsample 500] \
[--output-dir ./analysis_output] \
[--report-style clinical|technical]
# CyTOF directory of CSVs (auto-detected)
python3 scripts/run_pipeline.py /path/to/cytof_csvs/
# scRNA-seq h5ad file with technical report
python3 scripts/run_pipeline.py /path/to/data.h5ad --report-style technical
# Flow cytometry with more cells per sample
python3 scripts/run_pipeline.py /path/to/data.fcs --subsample 2000
analysis_output/
├── figures/ # All generated plots (PNG)
├── processed/
│ └── adata_processed.h5ad # Processed AnnData object
├── report.html # HTML report with embedded figures
└── analysis_summary.json # Machine-readable summary statistics
bioinformatics-init-analysis/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/
│ └── init-analysis/
│ └── SKILL.md # Skill definition (triggers, usage)
├── scripts/
│ ├── run_pipeline.py # Main CLI entry point
│ ├── detect_data_type.py # Auto-detection logic
│ ├── utils.py # Shared utilities
│ ├── step1_load_data.py # Universal data loader
│ ├── step2_qc.py # Data-type-aware QC
│ ├── step3_normalize.py # Normalization (arcsinh/CPM+log1p)
│ ├── step4_dim_reduction.py # PCA + UMAP
│ ├── step5_clustering.py # Leiden clustering + evaluation
│ ├── step6_marker_analysis.py# DE, correlation, treatment response
│ └── step7_report.py # HTML report generator
├── references/
│ ├── plot_interpretation_guide.md # How to read each plot type
│ ├── cytof_specifics.md # CyTOF data handling
│ ├── scrnaseq_specifics.md # scRNA-seq data handling
│ └── statistical_methods.md # Stats glossary for non-experts
└── assets/ # (reserved for future templates)
MIT