Use when gget CLI and Python workflow for quick genomic database queries, sequence lookup, BLAST-style searches, enrichment checks, and reproducible bioinformatics evidence logs. Triggers on \"scientific-pkg-gget\", \"scientific pkg gget\", \"gget\".
Scanned 9/19/2026
Install to Claude Code
npx -y skills add majinmagros/magros.ai-skills --skill scientific-pkg-gget --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Scientific Pkg Gget?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majinmagros-scientific-pkg-gget)More formats (shields.io, HTML) on the badges page.
---
name: scientific-pkg-gget
description: "Use when gget CLI and Python workflow for quick genomic database queries, sequence lookup, BLAST-style searches, enrichment checks, and reproducible bioinformatics evidence logs. Triggers on \"scientific-pkg-gget\", \"scientific pkg gget\", \"gget\"."
metadata:
origin: community
---
# gget
Use this skill when a task needs quick bioinformatics lookup across genomic
reference databases with the `gget` CLI or Python package.
## When to Use
- Finding Ensembl IDs, gene metadata, transcript details, or sequences.
- Running quick BLAST or BLAT lookups without building a full local pipeline.
- Fetching reference genome links and annotations from Ensembl.
- Querying protein structure, pathway, cancer, expression, or disease-association
modules through a single interface.
- Creating a reproducible first-pass evidence log before moving to heavier
tools such as Biopython, Snakemake, Nextflow, BLAST+, or database-specific
clients.
Use a dedicated workflow instead of `gget` when the task requires regulated
clinical interpretation, high-throughput production pipelines, or fine-grained
control over database versions and local indexes.
## Installation
Use a clean Python environment.
```bash
python -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install --upgrade gget
gget --help
```
If `uv` is available:
```bash
uv venv
. .venv/bin/activate
uv pip install gget
```
Before relying on an older environment, upgrade `gget` and re-check the module
docs. The upstream databases queried by `gget` change over time.
## Basic Patterns
CLI shape:
```bash
gget <module> [arguments] [options]
```
Python shape:
```python
import gget
result = gget.search(["BRCA1"], species="human")
print(result)Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!