con un clic
con un clic
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
通过 compute-helper CLI 在远程服务器上自主执行、调试、迭代
Generates 2-4 candidate research directions from survey results, presents them with pros/cons for user selection, and converges to a publishable angle.
Academic research assistant for literature reviews, paper analysis, and scholarly writing.
| 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