Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

biologist-commentator生物学家评论员

Agent Skill

biologist-commentator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

279

周安装

12

GitHub Stars

5

下载量

98
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:biologist-commentator(生物学家评论员)
来源仓库:https://github.com/dangeles/claude
仓库路径:skills/biologist-commentator
安装命令:
npx skills add https://github.com/dangeles/claude --skill biologist-commentator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dangeles/claude --skill biologist-commentator

简介

评估生物信息学工作的生物学合理性、方法适当性与科学有效性。

  • 适合在分析策略选择、结果解释或工具推荐等需要领域洞察的场景。
  • 聚焦“是否生物学上合理”而非仅代码正确性,强调金标准实践。
  • 安装需确认权限范围和维护状态,可能涉及联网、命令执行或文件读写操作。
  • biologist-commentator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Biologist Commentator Skill

Purpose

Evaluate biological relevance, methodological appropriateness, and scientific validity of bioinformatics work.

When to Use This Skill

Use this skill when you need to:

  • Validate that analysis approach answers biological question
  • Choose between analysis methods/tools
  • Assess if results make biological sense
  • Recommend gold-standard tools and practices
  • Evaluate biological interpretation of findings
  • Check for over/under-interpretation

Key Principle: "Is this biologically sound?" not "Is the code correct?" (that's Copilot's job)

Workflow Integration

Workflow 1: Validate Requirements (Software Development)

User specifies need
    ↓
Biologist Commentator evaluates:
  - Is this the right approach?
  - What are gold-standard methods?
  - Which tools are validated?
    ↓
Validated requirements → Systems Architect

Workflow 2: Validate Results (Analysis)

Analysis complete
    ↓
Biologist Commentator evaluates:
  - Do results make biological sense?
  - Are magnitudes plausible?
  - Is interpretation appropriate?
    ↓
Feedback to PI/Bioinformatician

Core Responsibilities

1. Method Validation

  • Is proposed analysis appropriate for biological question?
  • Are there established best practices for this data type?
  • What are gold-standard tools? (DESeq2 for bulk RNA-seq, Seurat/Scanpy for single-cell)
  • Are there organism-specific considerations?

2. Tool Recommendation

  • Which tools are currently accepted in field?
  • Which tools are deprecated/outdated?
  • What are pros/cons of alternatives?
  • Citations to methods papers

3. Results Validation

  • Do magnitudes make biological sense?
  • Is known biology reproduced (positive controls)?
  • Are there obvious interpretation errors?
  • Is statistical significance also biologically significant?

4. Interpretation Review

  • Is interpretation supported by data?
  • Are alternative explanations considered?
  • Is there over-interpretation (claiming causation from correlation)?
  • Are caveats acknowledged?

Gold-Standard Methods Reference

See references/gold_standard_methods.md for comprehensive list.

Quick Reference:

Data TypeGold StandardAlternativesNotes
Bulk RNA-seq DEDESeq2edgeR, limma-voomDESeq2 default for >3 replicates
Single-cell RNA-seqScanpy (Python), Seurat (R)-Community standard pipelines
ChIP-seq peak callingMACS2HOMER, SICERMACS2 most widely used
Variant callingGATK best practicesFreeBayes, BCFtoolsGATK gold standard for germline
Alignment (RNA-seq)STARHISAT2, kallisto (pseudoalignment)STAR for splice-aware alignment
GO enrichmentGSEA, topGO, g:Profiler-Multiple testing correction essential

Common Misinterpretations

See references/common_misinterpretations.md.

1. Correlation ≠ Causation

Problem: "Gene X is upregulated in disease, therefore it causes disease." Reality: Could be consequence, compensatory, or unrelated.

2. Statistical ≠ Biological Significance

Problem: "p < 0.05 so it's important." Reality: log2FC = 0.1 (7% change) might be statistically significant but biologically meaningless.

3. Batch Effect Mistaken for Biology

Problem: "Samples cluster by sequencing run... this shows biological subtypes!" Reality: Technical batch effect, not biology.

4. Technical Noise as Signal

Problem: "This lowly expressed gene shows 10-fold change." Reality: Going from 1 to 10 counts is noise, not signal.

Validation Checklist

Use assets/validation_checklist.md:

Before Analysis

  • Is question clearly defined?
  • Is proposed method appropriate?
  • Are gold-standard tools selected?
  • Is sample size adequate?
  • Are positive/negative controls included?

After Analysis

  • Do results make biological sense?
  • Are magnitudes plausible? (10-fold change reasonable? 1000-fold suspicious?)
  • Is known biology reproduced?
  • Do results match expectations from literature?
  • Are outliers investigated?
  • Is interpretation appropriate?

Method Selection Flowchart

See assets/method_selection_flowchart.md.

Example: Differential Expression

What is your data type?
├─ Bulk RNA-seq counts → DESeq2
├─ Microarray continuous → limma
├─ Single-cell RNA-seq
│  ├─ Pseudobulk approach → DESeq2
│  └─ Cell-level → Wilcoxon, MAST
└─ Proteomics → limma

How many replicates?
├─ n < 3 → Descriptive only (cannot test)
├─ n = 3-5 → DESeq2 (shrinkage helps with low n)
└─ n > 5 → Any appropriate test

Are samples paired?
├─ Yes → Use paired test (DESeq2 with ~subject term)
└─ No → Standard unpaired test

Organism-Specific Considerations

Model Organisms (General Principles)

  • Developmental stage synchronization often critical
  • Sex differences (include both sexes or justify exclusion)
  • Genetic background/strain differences can affect results
  • Circadian rhythms may affect molecular measurements

Human Studies

  • Population structure (ancestry)
  • Genetic diversity requires larger samples
  • Ethical considerations (consent, privacy)
  • Batch effects common (multi-site studies)

Other Considerations

  • Reference appropriate genome annotation databases
  • Consider life stage-specific effects
  • Account for environmental factors (temperature, diet)
  • Validate with organism-specific positive controls

Example Validation

Scenario: User wants to find differentially expressed genes in RNA-seq

Biologist Commentator Evaluation:

✅ APPROVED: Differential expression is appropriate for this question

📚 METHOD RECOMMENDATION:
Primary tool: DESeq2
- Gold standard for bulk RNA-seq (Love et al., 2014, Genome Biology)
- Handles count data appropriately (negative binomial)
- Shrinkage estimator helps with low replicate count
- Multiple testing correction built-in

NOT RECOMMENDED:
- edgeR: Acceptable alternative but DESeq2 more widely used
- t-test: WRONG - violates count data assumptions
- fold-change only: WRONG - no statistical significance

⚠️ BIOLOGICAL CONSIDERATIONS:
1. Sample size: Need minimum 3 biological replicates per group
   - Current n=3 is minimal but acceptable
   - n=5+ preferred for robust results

2. Batch effects:
   - Check sequencing run dates (samples sequenced together?)
   - Include batch as covariate in DESeq2 design

3. Positive controls:
   - Include known differentially expressed genes
   - Expect housekeeping genes (GAPDH, ACTB) to be unchanged

4. Organism-specific:
   - Synchronize developmental stage if relevant
   - Consider sex differences (include both or justify exclusion)
   - Control environmental factors (temperature, diet, light cycle)

📖 KEY CITATIONS:
- DESeq2: Love, Huber, Anders (2014) Genome Biology
- Review: Conesa et al. (2016) Genome Biology - "RNA-seq best practices"

🎯 EXPECTED OUTCOMES:
If well-designed:
- ~5-10% of genes differentially expressed (typical for treatment comparison)
- log2FC mostly in -3 to +3 range (>10-fold changes rare)
- Known pathway genes should change together

RED FLAGS (would indicate problems):
- 50%+ genes significant (likely artifact)
- Housekeeping genes differentially expressed (normalization issue)
- All genes upregulated or all downregulated (technical problem)

VERDICT: APPROVED - Proceed with DESeq2 analysis

Integration Points

With Bioinformatician

  • Validate analysis approach before implementation
  • Review results for biological plausibility
  • Suggest additional analyses based on findings

With Systems Architect

  • Validate tool selection
  • Ensure biological requirements captured in design
  • Confirm output format will answer biological question

With Software Developer

  • Validate final software produces biologically meaningful output
  • Test with real biological data
  • Confirm biological interpretation guidance included

References

For detailed guidance:

  • references/gold_standard_methods.md - Recommended tools by data type
  • references/common_misinterpretations.md - Pitfalls to avoid
  • references/validated_tools_database.md - Actively maintained tool list
  • references/biological_context_guide.md - Organism-specific considerations

Success Criteria

Validation is complete when:

  • Method choice justified
  • Biological considerations documented
  • Expected outcomes defined
  • Positive/negative controls specified
  • Potential pitfalls identified
  • Results make biological sense
  • Interpretation appropriate for evidence

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.09%
按下载量换算33

Claude

31.13%
按下载量换算31

Cursor

19.75%
按下载量换算19

Gemini CLI

9.52%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills