返回顶部
B

Bioinformatics生物信息学

Analyze DNA, RNA, and protein sequences with alignment, variant calling, and expression analysis pipelines.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
1,034
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

Bioinformatics

Setup

On first use, read setup.md for integration guidelines. Create ~/bioinformatics/ with user consent to store project context and preferences.

When to Use

User needs to analyze biological sequences, run genomic pipelines, or interpret sequencing data. Agent handles sequence alignment, variant calling, expression analysis, and format conversions.

Architecture

Memory lives in ~/bioinformatics/. See memory-template.md for structure.

CODEBLOCK0

Quick Reference

TopicFile
Setup processINLINECODE4
Memory template
memory-template.md | | File formats | formats.md | | Tool commands | tools.md | | RNA-seq pipeline | rnaseq.md | | Variant calling | variants.md |

Core Rules

1. Verify Input Quality First

Before any analysis, check input data quality:
  • - FASTQ: Run FastQC, check per-base quality, adapter content
  • BAM: Verify sorted, indexed (samtools quickcheck)
  • VCF: Validate format (bcftools view -h)

Bad input → garbage output. Always QC first.

2. Use Reference Genome Consistently

Track which reference is used per project:
  • - Human: GRCh38/hg38 (prefer) or GRCh37/hg19
  • Mouse: GRCm39/mm39 or GRCm38/mm10
  • Mixing references = invalid results

Store reference info in ~/bioinformatics/memory.md per project.

3. Preserve Raw Data

NEVER modify original FASTQ/BAM files:
  • - Work on copies
  • Keep originals read-only
  • Log every transformation step

4. Resource Awareness

Bioinformatics commands can consume massive resources:
  • - Check file sizes before operations
  • Use streaming when possible (samtools view | ...)
  • Estimate memory needs (BWA: ~6GB for human genome)
  • Warn before operations >10 minutes

5. Reproducibility

Every analysis must be reproducible:
  • - Log exact tool versions (samtools --version)
  • Save command parameters
  • Record input file checksums for critical analyses

Common Traps

  • - Wrong chromosome namingchr1 vs 1 causes silent failures. Check and convert with INLINECODE17
  • Unsorted BAM — Most tools expect sorted input. Symptoms: errors or wrong results with no warning
  • Index missing — BAM needs .bai, VCF needs .tbi. Commands fail cryptically without them
  • Memory exhaustion — Large BAM operations kill the session. Stream or use --threads wisely
  • Stale indices — After modifying BAM/VCF, regenerate index. Old index = corrupt reads
  • 0-based vs 1-based coordinates — BED is 0-based, VCF/GFF is 1-based. Off-by-one bugs are common

File Formats Quick Reference

FormatPurposeKey Tool
FASTAReference sequencesINLINECODE21
FASTQ
Raw reads + quality | seqtk, fastp | | SAM/BAM | Aligned reads | samtools | | VCF/BCF | Variants | bcftools | | BED | Genomic intervals | bedtools | | GFF/GTF | Gene annotations | gffread | | BigWig | Coverage tracks | deepTools |

Essential Commands

Quality Control

CODEBLOCK1

Alignment

CODEBLOCK2

Variant Calling

CODEBLOCK3

Data Manipulation

CODEBLOCK4

Security & Privacy

Data access:

  • - Only reads files user explicitly provides as input
  • Writes outputs to directories user specifies
  • Stores preferences in ~/bioinformatics/ (with consent)

Data that stays local:

  • - All sequence data processed locally
  • No external API calls for analysis
  • Pipeline configs in ~/bioinformatics/

This skill does NOT:

  • - Upload sequence data anywhere
  • Access files without explicit user instruction
  • Infer or collect data beyond explicit inputs
  • Make network requests during analysis

Note: Installing tools (conda, brew) and downloading reference genomes requires internet access. These are user-initiated actions.

Related Skills

Install with clawhub install <slug> if user confirms:
  • - data-analysis — statistical interpretation
  • INLINECODE31 — hypothesis testing
  • INLINECODE32 — research methodology

Feedback

  • - If useful: INLINECODE33
  • Stay updated: INLINECODE34

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 bioinformatics-1776419957 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 bioinformatics-1776419957 技能

通过命令行安装

skillhub install bioinformatics-1776419957

下载

⬇ 下载 Bioinformatics v1.0.0(免费)

文件大小: 12.52 KB | 发布时间: 2026-4-17 20:08

v1.0.0 最新 2026-4-17 20:08
Initial release

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部