agentsclimarketplace

Alterlab gget

Skill AlterLab-IEU/AlterLab-Academic-Skills/skills/bioinformatics/alterlab-gget

239 evaluated academic Claude/agent skills across 17 research domains (bioinformatics, data science, clinical, social-science methods, Turkish academia & more). Executable eval per skill, deterministic citation verifier, research→write→review→publish pipeline, and a skill-finder front door. Claude Code, Cursor, Codex, Gemini CLI & Copilot.

Install
npx -y skills add AlterLab-IEU/AlterLab-Academic-Skills --skill alterlab-gget

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Run fast one-liner queries to 20+ bioinformatics databases from the gget CLI or Python — gene info (Ensembl), BLAST, AlphaFold structures, Enrichr enrichment, and more. Use for quick interactive lookups of genes, sequences, structures, or pathways — for batch processing or advanced BLAST use biopython, for multi-database Python workflows use bioservices. Part of the AlterLab Academic Skills suite.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.5 KB, as published. Nobody here has run it

gget

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:

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.