Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计提醒

ggetgget 生物检索

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

12

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/delphine-l/claude_global --skill gget

简介

gget 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它提供对 20+ 基因组数据库的统一访问,支持命令行和 Python 接口,适用于生物信息学研究场景。
  • 使用方式包括通过 gget <module> 命令或 Python 函数访问搜索、序列和注释信息。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写等操作。
  • gget 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

gget

Unified CLI and Python access to 20+ genomic databases. All modules work as both command-line tools and Python functions.

Installation

uv pip install --upgrade gget

Some modules require setup: gget setup alphafold|cellxgene|elm|gpt

Quick Start

# CLI: gget <module> [arguments]
gget search -s human BRCA1
gget info ENSG00000012048
gget seq ENSG00000012048 -t   # protein sequence

# Python: gget.module(arguments)
import gget
gget.search(["BRCA1"], species="homo_sapiens")
gget.info(["ENSG00000012048"])

Common flags: -o (save to file), -csv (CSV output), -q (quiet)

Supporting Files

Scripts

  • scripts/gene_analysis.py - Gene discovery to sequence analysis pipeline
  • scripts/enrichment_pipeline.py - Gene list enrichment workflow
  • scripts/batch_sequence_analysis.py - Batch BLAST/alignment processing

Module Overview

Reference & Gene Information

ModuleWhat it doesExample
refDownload reference genomes (Ensembl)gget ref -w gtf -d human
searchFind genes by name/descriptiongget search -s human "GABA receptor"
infoGene/transcript metadata (Ensembl+UniProt+NCBI)gget info ENSG00000012048
seqNucleotide/protein sequencesgget seq -t ENSG00000012048

Sequence Analysis

ModuleWhat it doesExample
blastNCBI BLAST searchesgget blast MKWMFK... -db swissprot
blatUCSC BLAT genomic mappinggget blat ATCGATCG -a human
muscleMultiple sequence alignmentgget muscle sequences.fasta
diamondFast local alignmentgget diamond query.fa -ref ref.fa

Structure & Protein

ModuleWhat it doesExample
pdbQuery Protein Data Bankgget pdb 7S7U
alphafoldPredict 3D structure (setup required)gget alphafold MKWMFK...
elmEukaryotic linear motifs (setup required)gget elm LIAQSIGQASFV

Expression & Disease

ModuleWhat it doesExample
archs4Correlated genes / tissue expressiongget archs4 -w tissue ACE2
cellxgeneSingle-cell RNA-seq data (setup required)gget cellxgene --gene ACE2 --tissue lung
enrichrGO/pathway enrichment analysisgget enrichr -db ontology ACE2 AGT
bgeeOrthologs / expression across speciesgget bgee ENSG00000169194
opentargetsDisease & drug associationsgget opentargets ENSG00000169194
cbioCancer genomics (cBioPortal)gget cbio search breast
cosmicSomatic mutations (requires account)gget cosmic EGFR

Other

ModuleWhat it does
mutateGenerate mutated sequences from annotations
setupInstall module-specific dependencies

Key Workflows

Gene Discovery → Sequence Analysis

# Search → info → sequence → BLAST
results = gget.search(["GABA", "receptor"], species="homo_sapiens")
info = gget.info(results["ensembl_id"].tolist()[:5])
sequences = gget.seq(results["ensembl_id"].tolist()[:5], translate=True)
blast_hits = gget.blast(my_sequence, database="swissprot", limit=10)

Expression & Enrichment

# Tissue expression → correlated genes → enrichment
tissue_expr = gget.archs4("ACE2", which="tissue")
correlated = gget.archs4("ACE2", which="correlation")
enrichment = gget.enrichr(correlated["gene_symbol"].tolist()[:50], database="ontology", plot=True)

Enrichr Database Shortcuts

ShortcutDatabase
pathwayKEGG_2021_Human
transcriptionChEA_2016
ontologyGO_Biological_Process_2021
diseases_drugsGWAS_Catalog_2019
celltypesPanglaoDB_Augmented_2021

Single-Cell Data

# Gene symbols are case-sensitive: 'PAX7' (human), 'Pax7' (mouse)
adata = gget.cellxgene(gene=["ACE2", "ABCA1"], tissue="lung", cell_type="epithelial cell")
# Filters: disease, development_stage, sex, assay, donor_id, ethnicity

Comparative Genomics

orthologs = gget.bgee("ENSG00000169194", type="orthologs")
human_seq = gget.seq("ENSG00000169194", translate=True)
alignment = gget.muscle([human_seq, mouse_seq])

Best Practices

  • Use --limit to control result sizes
  • Save results with -o for reproducibility
  • Process max ~1000 Ensembl IDs at once with gget info
  • Use gget diamond with --threads for faster local alignment; save DB with --diamond_db
  • For gget muscle, use -s5 (Super5) for large datasets
  • AlphaFold multimer: use -mr 20 for accuracy, -r for AMBER relaxation
  • Update regularly: uv pip install --upgrade gget (databases change structure)

Attribution

Adapted from K-Dense-AI/claude-scientific-skills (BSD-2-Clause). Citation: Luebbert & Pachter (2023) Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.58%
按下载量换算23

Claude

30.8%
按下载量换算20

Cursor

16.73%
按下载量换算11

Gemini CLI

9.53%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills