gget

SkillDatabases & data

Query more than 20 bioinformatics databases with fast one-line commands to look up genes, sequences, protein structures, and pathways. Once added, your AI can pull gene information from Ensembl, run BLAST sequence searches, fetch AlphaFold structures, and run Enrichr enrichment analyses. It is built for quick interactive lookups rather than large batch jobs.

Available today. Use it from your connected AI after setup.

Add the skill, then ask your AI to look up a gene, run a sequence search, or fetch a protein structure. For large batch processing or advanced BLAST work, use a tool better suited to those tasks.

Then ask your AI: use the gget skill

What your AI can do with it

  • Look up gene information from Ensembl
  • Search sequence databases with BLAST
  • Fetch protein structures from AlphaFold
  • Run pathway enrichment analyses with Enrichr
  • Query 20+ bioinformatics databases in a single line
  • Work from the command line or in Python

What this skill tells your AI

The instructions your AI receives, as published by alterlab-ieu/alterlab-academic-skills in skills/bioinformatics/alterlab-gget/SKILL.md and read by ahel’s review.

Overview

gget is a command-line bioinformatics tool and Python package providing unified access to 20+ genomic databases and analysis methods. Query gene information, sequence analysis, protein structures, expression data, and disease associations through a consistent interface. All gget modules work both as command-line tools and as Python functions.

Important: The databases queried by gget are continuously updated, which sometimes changes their structure. gget modules are tested automatically on a biweekly basis and updated to match new database structures when necessary.

Installation

Install gget in a clean virtual environment to avoid conflicts:

# Install (or upgrade) into a clean environment
uv pip install --upgrade gget

# In Python/Jupyter
import gget

Quick Start

Basic usage pattern for all modules:

# Command-line
gget <module> [arguments] [options]

# Python
gget.module(arguments, options)

Most modules return:

  • Command-line: JSON (default) or CSV with -csv flag
  • Python: DataFrame or dictionary

Common flags across modules:

  • -o/--out: Save results to file
  • -q/--quiet: Suppress progress information
  • -csv: Return CSV format (command-line only)

Module Catalog

Pick a module, then see references/module_examples.md for worked CLI + Python examples and references/module_reference.md for the full parameter table.

ModulePurposeQueried source
refReference genome download links/metadataEnsembl
searchFind genes by name/descriptionEnsembl
infoGene/transcript metadata (~1000 IDs max)Ensembl, UniProt, NCBI
seqNucleotide/amino-acid sequences (FASTA)Ensembl
blastBLAST against standard databasesNCBI BLAST
blatGenomic position of a sequenceUCSC BLAT
muscleMultiple sequence alignmentMuscle5 (local)
diamondFast local protein/translated alignmentDIAMOND (local)
pdbExperimental protein structures + metadataRCSB PDB
alphafoldPredict 3D protein structure (setup req.)AlphaFold2 (local)
elmEukaryotic linear motifs (setup req.)ELM
archs4Correlated genes / tissue expressionARCHS4
cellxgeneSingle-cell RNA-seq (setup req.)CZ CELLxGENE Census
enrichrOntology/pathway enrichmentEnrichr
bgeeOrthologs and expressionBgee
opentargetsDisease/drug associationsOpenTargets
cbioCancer genomics heatmapscBioPortal
cosmicSomatic cancer mutations (license/account)COSMIC
mutateGenerate mutated sequenceslocal
gptNatural-language text generation (setup req.)OpenAI API
setupInstall third-party deps for a modulelocal

Setup-required modules (gget setup <module> before first use): alphafold (~4GB params, needs uv pip install openmm first), cellxgene, elm, gpt.

Routing

  • Quick interactive lookup (gene info, BLAST, one structure, one enrichment) → use gget directly; see references/module_examples.md.
  • Batch processing / advanced BLAST → use the biopython skill.
  • Multi-database Python workflows → use the bioservices skill.
  • Chaining several gget modules into a pipeline → see references/workflows.md and the ready-made scripts/ (gene_analysis, batch_sequence_analysis, enrichment_pipeline).

Best Practices (essentials)

  • Use --limit to bound large queries; save with -o/--out for reproducibility.
  • Gene symbols are case-sensitive in cellxgene ('PAX7' vs 'Pax7').
  • Run gget setup before first use of alphafold, cellxgene, elm, gpt.
  • Process max ~1000 Ensembl IDs at once with gget info.
  • Database structures change; keep gget updated: uv pip install --upgrade gget.
  • Use virtual environments to avoid dependency conflicts.

Output Formats

  • Command-line: JSON default; -csv for CSV; FASTA (seq, mutate); PDB (pdb, alphafold); PNG (cbio plot).
  • Python: DataFrame/dict default; json=True for JSON; save=True or out="filename" to write; AnnData for cellxgene.

References

  • references/module_examples.md — worked CLI + Python examples for every module
  • references/module_reference.md — full parameter tables for all modules
  • references/database_info.md — queried databases and their update frequencies
  • references/workflows.md — extended multi-module workflow examples

For additional help:

Signals

GitHub stars
66
Forks
13
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
alterlab-gget
Source
github.com/alterlab-ieu/alterlab-academic-skills