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