Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Fast CLI/Python queries to 20+ bioinformatics databases. Use for quick lookups: gene info, BLAST/BLAT, viral sequence downloads, AlphaFold structures, enrichment analysis, OpenTargets, COSMIC, CELLxGENE, and 8cube mouse specificity/expression data. Best for interactive exploration and simple queries. For batch processing or advanced BLAST use biopython; for multi-database Python workflows use bioservices.
.claude/skills/lingxling-gget/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 57% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 268% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 414% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 98% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 257% | 0% |
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, viral sequences, expression data, disease associations, and mouse tissue/cell specificity metrics through a consistent interface. Most 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. Guidance here targets gget 0.30.5 (PyPI current as of 2026-06-07). For reproducible work, pin gget==0.30.5; for broken upstream database adapters, update gget after checking release notes.
Install gget in a clean virtual environment to avoid conflicts:
bash# Reproducible install targeting this skill uv venv .venv source .venv/bin/activate uv pip install "gget==0.30.5" # In Python/Jupyter import gget
Basic usage pattern for all modules:
bash# Command-line gget <module> [arguments] [options] # Python gget.module(arguments, options)
Most modules return:
-csv flagCommon flags across modules:
-o/--out: Save results to file-q/--quiet: Suppress progress information-csv: Return CSV format (command-line only)Python argument names generally match long CLI options without leading dashes. For example, --census_version becomes census_version=.... Use gget <module> --help for the exact current signature.
Retrieve download links and metadata for Ensembl reference genomes.
Parameters:
species: Genus_species format (e.g., 'homo_sapiens', 'mus_musculus'). Shortcuts: 'human', 'mouse'-w/--which: Specify return types as comma-separated CLI values or Python list (gtf, cdna, dna, cds, cdrna, pep). Default: all-r/--release: Ensembl release number (default: latest)-od/--out_dir: Directory for downloaded files-l/--list_species: List available vertebrate species-liv/--list_iv_species: List available invertebrate species-ftp: Return only FTP links-d/--download: Download files (requires curl)Examples:
bash# List available species gget ref --list_species # Get all reference files for human gget ref homo_sapiens # Download GTF and cDNA files for mouse gget ref -w gtf,cdna -d mouse
python# Python gget.ref("homo_sapiens") gget.ref("mus_musculus", which=["gtf", "cdna"], download=True)
Locate genes by name, description, and Ensembl synonyms across species.
Parameters:
searchwords: One or more search terms (case-insensitive)-s/--species: Target species (e.g., 'homo_sapiens', 'mouse')-r/--release: Ensembl release number-t/--id_type: Return 'gene' (default) or 'transcript'-ao/--andor: 'or' (default) finds ANY searchword; 'and' requires ALL-l/--limit: Maximum results to returnwrap_text: Python-only display helper for wide DataFramesReturns: ensembl_id, gene_name, ensembl_description, ext_ref_description, biotype, URL
Examples:
bash# Search for GABA-related genes in human gget search -s human gaba gamma-aminobutyric # Find specific gene, require all terms gget search -s mouse -ao and pax7 transcription
python# Python gget.search(["gaba", "gamma-aminobutyric"], species="homo_sapiens")
Retrieve comprehensive gene and transcript metadata from Ensembl, UniProt, and NCBI.
Parameters:
ens_ids: One or more Ensembl IDs (also supports WormBase, Flybase IDs). Limit: ~1000 IDs-n/--ncbi: Disable NCBI data retrieval-u/--uniprot: Disable UniProt data retrieval-pdb: Include PDB identifiers (increases runtime)Returns: UniProt ID, NCBI gene ID, primary gene name, synonyms, protein names, descriptions, biotype, canonical transcript
Examples:
bash# Get info for multiple genes gget info ENSG00000034713 ENSG00000104853 ENSG00000170296 # Include PDB IDs gget info ENSG00000034713 -pdb
python# Python gget.info(["ENSG00000034713", "ENSG00000104853"], pdb=True)
Fetch nucleotide or amino acid sequences for genes and transcripts.
Parameters:
ens_ids: One or more Ensembl identifiers-t/--translate: Fetch amino acid sequences instead of nucleotide-iso/--isoforms: Return all transcript variants (gene IDs only)Returns: FASTA format sequences
Examples:
bash# Get nucleotide sequences gget seq ENSG00000034713 ENSG00000104853 # Get all protein isoforms gget seq -t -iso ENSG00000034713
python# Python gget.seq(["ENSG00000034713"], translate=True, isoforms=True)
BLAST nucleotide or amino acid sequences against standard databases.
Parameters:
sequence: Sequence string or path to FASTA/.txt file-p/--program: blastn, blastp, blastx, tblastn, tblastx (auto-detected)-db/--database:-l/--limit: Max hits (default: 50)-e/--expect: E-value cutoff (default: 10.0)-lcf/--low_comp_filt: Enable low complexity filtering-mbo/--megablast_off: Disable MegaBLAST (blastn only)Examples:
bash# BLAST protein sequence gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # BLAST from file with specific database gget blast sequence.fasta -db swissprot -l 10
python# Python gget.blast("MKWMFK...", database="swissprot", limit=10)
Locate genomic positions of sequences using UCSC BLAT.
Parameters:
sequence: Sequence string or path to FASTA/.txt file-st/--seqtype: 'DNA', 'protein', 'translated%20RNA', 'translated%20DNA' (auto-detected)-a/--assembly: Target assembly (default: 'human'/hg38; options: 'mouse'/mm39, 'zebrafinch'/taeGut2, etc.)Returns: genome, query size, alignment positions, matches, mismatches, alignment percentage
Examples:
bash# Find genomic location in human gget blat ATCGATCGATCGATCG # Search in different assembly gget blat -a mm39 ATCGATCGATCGATCG
python# Python gget.blat("ATCGATCGATCGATCG", assembly="mouse")
Align multiple nucleotide or amino acid sequences using Muscle5.
Parameters:
fasta: Sequences or path to FASTA/.txt file-s5/--super5: Use Super5 algorithm for faster processing (large datasets)Returns: Aligned sequences in ClustalW format or aligned FASTA (.afa)
Examples:
bash# Align sequences from file gget muscle sequences.fasta -o aligned.afa # Use Super5 for large dataset gget muscle large_dataset.fasta -s5
python# Python gget.muscle("sequences.fasta", save=True)
Perform fast local protein alignment or translated nucleotide-to-protein alignment using DIAMOND.
Parameters:
-ref/--reference: Reference sequences (string/list) or FASTA file path (required)-s/--sensitivity: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive (default), ultra-sensitive-t/--threads: CPU threads (default: 1)-db/--diamond_db: Save database for reuse-x/--translated: Enable nucleotide query to amino acid reference alignmentReturns: Identity percentage, sequence lengths, match positions, gap openings, E-values, bit scores
Examples:
bash# Align against reference gget diamond GGETISAWESQME -ref reference.fasta -t 4 # Translate nucleotide query against amino acid reference gget diamond query_nt.fasta -ref proteins.fasta --translated
python# Python gget.diamond("GGETISAWESQME", reference="reference.fasta", threads=4) gget.diamond("ATGGGC...", reference="proteins.fasta", translated=True)
Query RCSB Protein Data Bank for structure and metadata.
Parameters:
pdb_id: PDB identifier (e.g., '7S7U')-r/--resource: Data type (pdb, entry, pubmed, assembly, entity types)-i/--identifier: Assembly, entity, or chain IDReturns: PDB format (structures) or JSON (metadata)
Examples:
bash# Download PDB structure gget pdb 7S7U -o 7S7U.pdb # Get metadata gget pdb 7S7U -r entry
python# Python gget.pdb("7S7U", save=True)
Predict 3D protein structures using simplified AlphaFold2.
Setup Required:
bash# Installs modified third-party dependencies and downloads model parameters gget setup alphafold
Parameters:
sequence: Amino acid sequence (string), multiple sequences (list), or FASTA file. Multiple sequences trigger multimer modeling-mr/--multimer_recycles: Recycling iterations (default: 3; recommend 20 for accuracy)-mfm/--multimer_for_monomer: Apply multimer model to single proteins-r/--relax: AMBER relaxation for top-ranked modelplot: Python-only; generate interactive 3D visualization (default: True)show_sidechains: Python-only; include side chains (default: True)Returns: PDB structure file, JSON alignment error data, optional 3D visualization
Examples:
bash# Predict single protein structure gget alphafold MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Predict multimer with higher accuracy gget alphafold sequence1.fasta -mr 20 -r
python# Python with visualization gget.alphafold("MKWMFK...", plot=True, show_sidechains=True) # Multimer prediction gget.alphafold(["sequence1", "sequence2"], multimer_recycles=20)
Predict Eukaryotic Linear Motifs in protein sequences.
Setup Required:
bashgget setup elm
Parameters:
sequence: Amino acid sequence or UniProt Acc-u/--uniprot: Indicates sequence is UniProt Acc-e/--expand: Include protein names, organisms, references-s/--sensitivity: DIAMOND alignment sensitivity (default: "very-sensitive")-t/--threads: Number of threads (default: 1)Returns: Two outputs:
Examples:
bash# Predict motifs from sequence gget elm LIAQSIGQASFV -o results # Use UniProt accession with expanded info gget elm --uniprot Q02410 -e
python# Python ortholog_df, regex_df = gget.elm("LIAQSIGQASFV")
Query ARCHS4 database for correlated genes or tissue expression data.
Parameters:
gene: Gene symbol or Ensembl ID (with --ensembl flag)-w/--which: 'correlation' (default, returns 100 most correlated genes) or 'tissue' (expression atlas)-s/--species: 'human' (default) or 'mouse' (tissue data only)-e/--ensembl: Input is Ensembl IDReturns:
Examples:
bash# Get correlated genes gget archs4 ACE2 # Get tissue expression gget archs4 -w tissue ACE2
python# Python gget.archs4("ACE2", which="tissue")
Query CZ CELLxGENE Discover Census for single-cell data.
Setup Required:
bashgget setup cellxgene
Parameters:
--gene (-g): Gene names or Ensembl IDs (case-sensitive! 'PAX7' for human, 'Pax7' for mouse)--tissue: Tissue type(s)--cell_type: Specific cell type(s)--species (-s): 'homo_sapiens' (default) or 'mus_musculus'--census_version (-cv): Version ("stable", "latest", or dated)--ensembl (-e): Use Ensembl IDs--meta_only (-mo): Return metadata onlyReturns: AnnData object with count matrices and metadata (or metadata-only dataframes)
Examples:
bash# Get single-cell data for specific genes and cell types gget cellxgene --gene ACE2 ABCA1 --tissue lung --cell_type "mucus secreting cell" -o lung_data.h5ad # Metadata only gget cellxgene --gene PAX7 --tissue muscle --meta_only -o metadata.csv
python# Python adata = gget.cellxgene(gene=["ACE2", "ABCA1"], tissue="lung", cell_type="mucus secreting cell")
Perform ontology enrichment analysis on gene lists using Enrichr.
Parameters:
genes: Gene symbols or Ensembl IDs-db/--database: Reference database (supports shortcuts: 'pathway', 'transcription', 'ontology', 'diseases_drugs', 'celltypes')-s/--species: human (default), mouse, fly, yeast, worm, fish-bkg_l/--background_list: Background genes for comparison-ko/--kegg_out: Save KEGG pathway images with highlighted genesplot: Python-only; generate graphical resultsDatabase Shortcuts:
Examples:
bash# Enrichment analysis for ontology gget enrichr -db ontology ACE2 AGT AGTR1 # Save KEGG pathways gget enrichr -db pathway ACE2 AGT AGTR1 -ko ./kegg_images/
python# Python with plot gget.enrichr(["ACE2", "AGT", "AGTR1"], database="ontology", plot=True)
Retrieve orthology and gene expression data from Bgee database.
Parameters:
ens_id: Ensembl gene ID or NCBI gene ID (for non-Ensembl species). Multiple IDs supported when type=expression-t/--type: 'orthologs' (default) or 'expression'Returns:
Examples:
bash# Get orthologs gget bgee ENSG00000169194 # Get expression data gget bgee ENSG00000169194 -t expression # Multiple genes gget bgee ENSBTAG00000047356 ENSBTAG00000018317 -t expression
python# Python gget.bgee("ENSG00000169194", type="orthologs")
Retrieve disease and drug associations from OpenTargets.
Parameters:
-r/--resource: diseases (default), drugs, tractability, pharmacogenetics, expression, depmap, interactions-l/--limit: Cap results count--filters: Exact-match filters using returned OpenTargets column names; repeat on the CLI or pass a Python dict-or/--or: CLI-only; combine filters with OR logic instead of the default AND logicCurrent notes:
--filter_mode argument was removed upstream.Examples:
bash# Get associated diseases gget opentargets ENSG00000169194 -r diseases -l 5 # Get associated drugs gget opentargets ENSG00000169194 -r drugs -l 10 # Filter interactions by returned column names gget opentargets ENSG00000169194 -r interactions --filters protein_a_id=P35225 --filters gene_b_id=ENSG00000077238
python# Python gget.opentargets("ENSG00000169194", resource="diseases", limit=5) gget.opentargets( "ENSG00000169194", resource="interactions", filters={"protein_a_id": "P35225", "gene_b_id": "ENSG00000077238"}, )
Plot cancer genomics heatmaps using cBioPortal data.
Two subcommands:
search - Find study IDs:
bashgget cbio search breast lung
plot - Generate heatmaps:
Parameters:
-s/--study_ids: Space-separated cBioPortal study IDs (required)-g/--genes: Space-separated gene names or Ensembl IDs (required)-st/--stratification: Column to organize data (tissue, cancer_type, cancer_type_detailed, study_id, sample)-vt/--variation_type: Data type (mutation_occurrences, cna_nonbinary, sv_occurrences, cna_occurrences, Consequence)-f/--filter: Filter by column value (e.g., 'study_id:msk_impact_2017')-dd/--data_dir: Cache directory (default: ./gget_cbio_cache)-fd/--figure_dir: Output directory (default: ./gget_cbio_figures)-dpi: Resolution (default: 100)-sh/--show: Display plot in window-nc/--no_confirm: Skip download confirmationsExamples:
bash# Search for studies gget cbio search esophag ovary # Create heatmap gget cbio plot -s msk_impact_2017 -g AKT1 ALK BRAF -st tissue -vt mutation_occurrences
python# Python gget.cbio_search(["esophag", "ovary"]) gget.cbio_plot(["msk_impact_2017"], ["AKT1", "ALK"], stratification="tissue")
Search COSMIC (Catalogue Of Somatic Mutations In Cancer) database.
Important: License fees apply for commercial use. Requires COSMIC account credentials. Avoid passing COSMIC credentials directly as CLI arguments on shared systems because command-line arguments can be exposed in shell history, process listings, and logs. Prefer the interactive prompt (gget cosmic --download_cosmic ...) or named environment variables read inside Python.
Parameters:
searchterm: Gene name, Ensembl ID, mutation notation, or sample ID-ctp/--cosmic_tsv_path: Path to downloaded COSMIC TSV file (required for querying)-l/--limit: Maximum results (default: 100)Database download flags:
-d/--download_cosmic: Activate download mode-gm/--gget_mutate: Create version for gget mutate-cp/--cosmic_project: Database type (cancer, cancer_example, census, cell_line, resistance, genome_screen, targeted_screen)-cv/--cosmic_version: COSMIC version-gv/--grch_version: Human reference genome (37 or 38)--email, --password: COSMIC credentials for non-interactive downloads; prefer prompt or Python env varsExamples:
bash# First download database; gget prompts for COSMIC email/password gget cosmic --download_cosmic --cosmic_project cancer # Then query gget cosmic EGFR --cosmic_tsv_path "CancerMutationCensus_AllData_Tsv_v101_GRCh37/CancerMutationCensus_AllData_v101_GRCh37.tsv" -l 10
python# Python import os gget.cosmic( searchterm=None, download_cosmic=True, cosmic_project="cancer", email=os.environ["COSMIC_EMAIL"], password=os.environ["COSMIC_PASSWORD"], ) gget.cosmic("EGFR", cosmic_tsv_path="cosmic_data.tsv", limit=10)
Download viral nucleotide sequences plus linked metadata from INSDC sources via NCBI Virus, with optional GenBank metadata enrichment. Results are saved to an output folder as FASTA, CSV, JSONL, and a command summary file.
Parameters:
virus: Virus taxon name, taxon ID, accession, space-separated accessions, or path to a text file of accessions-a/--is_accession: Treat virus as accession input--is_sars_cov2, --is_alphainfluenza: Use optimized cached NCBI datasets paths for SARS-CoV-2 or Influenza A--host: Host organism name or NCBI taxonomy ID--nuc_completeness: complete or partial--min_seq_length, --max_seq_length: Sequence length filters-g/--genbank_metadata: Fetch detailed GenBank metadata; auto-enabled by some annotation filters--segment, --vaccine_strain, --annotated, --lab_passaged, --source_database: Common viral metadata filters--download_all_accessions: Apply filters across all viral accessions--baseline, --merge-results: Resume or merge with prior metadata from partial/previous runsImportant: Do not use --download_all_accessions without restrictive filters; it can attempt to download the entire Viruses taxonomy and consume substantial time, bandwidth, and disk.
Examples:
bash# Complete Zika genomes from human hosts gget virus "Zika virus" --nuc_completeness complete --host human --out zika_data # SARS-CoV-2 reference genome by accession gget virus NC_045512.2 --is_accession --is_sars_cov2
python# Python gget.virus( "SARS-CoV-2", host="human", nuc_completeness="complete", min_seq_length=29000, genbank_metadata=True, is_sars_cov2=True, outfolder="covid_data", )
Query 8cubeDB for snRNA-seq gene specificity metrics and normalized expression values across mouse strains, tissues, sexes, and individuals.
Subcommands:
gget 8cube specificity <genes...>: Return gene-level psi/zeta specificity statisticsgget 8cube psi_block <genes...> --analysis_level <level> --analysis_type <type>: Return block-level specificitygget 8cube expression <genes...> --analysis_level <level> --analysis_type <type>: Return mean/variance normalized expressionExamples:
bashgget 8cube specificity Acsm2 ENSMUSG00000046623.9 gget 8cube psi_block Acsm2 --analysis_level Kidney --analysis_type "Sex:Celltype" gget 8cube expression Gjb4 --analysis_level Across_tissues --analysis_type Strain
python# Python from gget import specificity, psi_block, gene_expression specificity(["Acsm2", "ENSMUSG00000046623.9"]) psi_block(["Acsm2"], analysis_level="Kidney", analysis_type="Sex:Celltype") gene_expression(["Gjb4"], analysis_level="Across_tissues", analysis_type="Strain")
Generate mutated nucleotide sequences from mutation annotations.
Current scope: gget 0.29.1 simplified mutate to focus on applying standard mutation annotations to supplied nucleotide sequences and returning/saving mutated FASTA records. The broader variant-screening workflow moved upstream to the kvar project.
Parameters:
sequences: FASTA file path or direct nucleotide sequence input (string/list)-m/--mutations: Mutation string/list, CSV/TSV path, or DataFrame with mutation data (required)-mc/--mut_column: Mutation column name (default: 'mutation')-sic/--seq_id_column: Sequence ID column (default: 'seq_ID')-mic/--mut_id_column: Mutation ID column (default: same as mut_column)-k/--k: Length of flanking sequences (default: 30 nucleotides)-o/--out: Output FASTA path; without it Python returns a list of mutated sequencesReturns: Mutated sequences in FASTA format
Examples:
bash# Single mutation gget mutate ATCGCTAAGCT -m "c.4G>T" # Multiple sequences with one mutation per sequence gget mutate ATCGCTAAGCT TAGCTA -m "c.4G>T" "c.1_3inv" -o mutated.fasta
python# Python gget.mutate("ATCGCTAAGCT", "c.4G>T") gget.mutate(["ATCGCTAAGCT", "TAGCTA"], ["c.4G>T", "c.1_3inv"], out="mutated.fasta")
Generate natural language text using OpenAI's API.
Setup Required:
bashgget setup gpt
Important: Requires an OpenAI API key. Do not hard-code the key in notebooks, scripts, shell history, or committed files. Prefer a named environment variable such as OPENAI_API_KEY, and set monthly billing limits before use.
Parameters:
prompt: Text input for generation (required)api_key: OpenAI authentication (required by the upstream API)Examples: For CLI usage, gget gpt expects the API key as an argument. Avoid this on shared systems because process arguments can be visible to other users.
python# Python import os gget.gpt("Explain CRISPR", api_key=os.environ["OPENAI_API_KEY"])
Install/download third-party dependencies for specific modules.
As of gget 0.29.2, gget setup tries uv pip install first for Python dependencies and falls back to pip install if uv is unavailable or fails.
Parameters:
module: Module name requiring dependency installation-o/--out: Output folder path (elm module only)Modules requiring setup:
alphafold - Downloads ~4GB of model parameterscellxgene - Installs cellxgene-census (may require Python 3.9/3.10 if the latest Python is unsupported)elm - Downloads local ELM databasegpt - Installs/configures OpenAI integration dependenciesExamples:
bash# Setup AlphaFold gget setup alphafold # Setup ELM with custom directory gget setup elm -o /path/to/elm_data
python# Python gget.setup("alphafold")
Find and analyze genes of interest:
python# 1. Search for genes results = gget.search(["GABA", "receptor"], species="homo_sapiens") # 2. Get detailed information gene_ids = results["ensembl_id"].tolist() info = gget.info(gene_ids[:5]) # 3. Retrieve sequences sequences = gget.seq(gene_ids[:5], translate=True)
Align sequences and predict structures:
python# 1. Align multiple sequences alignment = gget.muscle("sequences.fasta") # 2. Find similar sequences blast_results = gget.blast(my_sequence, database="swissprot", limit=10) # 3. Predict structure structure = gget.alphafold(my_sequence, plot=True) # 4. Find linear motifs ortholog_df, regex_df = gget.elm(my_sequence)
Analyze expression patterns and functional enrichment:
python# 1. Get tissue expression tissue_expr = gget.archs4("ACE2", which="tissue") # 2. Find correlated genes correlated = gget.archs4("ACE2", which="correlation") # 3. Get single-cell data adata = gget.cellxgene(gene=["ACE2"], tissue="lung", cell_type="epithelial cell") # 4. Perform enrichment analysis gene_list = correlated["gene_symbol"].tolist()[:50] enrichment = gget.enrichr(gene_list, database="ontology", plot=True)
Investigate disease associations and therapeutic targets:
python# 1. Search for genes genes = gget.search(["breast cancer"], species="homo_sapiens") # 2. Get disease associations diseases = gget.opentargets("ENSG00000169194", resource="diseases") # 3. Get drug associations drugs = gget.opentargets("ENSG00000169194", resource="drugs") # 4. Query cancer genomics data study_ids = gget.cbio_search(["breast"]) gget.cbio_plot(study_ids[:2], ["BRCA1", "BRCA2"], stratification="cancer_type") # 5. Search COSMIC for mutations cosmic_results = gget.cosmic("BRCA1", cosmic_tsv_path="cosmic.tsv")
Compare proteins across species:
python# 1. Get orthologs orthologs = gget.bgee("ENSG00000169194", type="orthologs") # 2. Get sequences for comparison human_seq = gget.seq("ENSG00000169194", translate=True) mouse_seq = gget.seq("ENSMUSG00000026091", translate=True) # 3. Align sequences alignment = gget.muscle([human_seq, mouse_seq]) # 4. Compare structures human_structure = gget.pdb("7S7U") mouse_structure = gget.alphafold(mouse_seq)
Prepare reference data for downstream analysis (e.g., kallisto|bustools):
bash# 1. List available species gget ref --list_species # 2. Download reference files gget ref -w gtf -w cdna -d homo_sapiens # 3. Build kallisto index kallisto index -i transcriptome.idx transcriptome.fasta # 4. Download genome for alignment gget ref -w dna -d homo_sapiens
--limit to control result sizes for large queries-o/--out for reproducibility--quiet in production scripts to reduce outputgget diamond with --threads for faster local alignment--diamond_db for repeated queries-s5/--super5 for large datasetsgget setup before first use of alphafold, cellxgene, elm, gpt-dd to avoid repeated downloads-mr 20 for higher accuracy-r flag for AMBER relaxation of final structuresplot=Truegget virus before requesting broad viral datasetscommand_summary.txt with downstream results for reproducibility and recovery after partial downloads--baseline and --merge-results to resume interrupted viral metadata/sequence downloadsuv pip install "gget==0.30.5"-csv flagjson=True parametersave=True or specify out="filename"This skill includes reference documentation for detailed module information:
module_reference.md - Comprehensive parameter reference for all modulesdatabase_info.md - Information about queried databases and their update frequenciesworkflows.md - Extended workflow examples and use casesFor additional help:
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-04 | pass→pass | 2,594 | 3,799 | +46% | 1 | 1 | 0% | 337 | 9,206 | +2632% | 0 | 0 | — |
case-01 | fail→pass | 27,008 | 5,128 | -81% | 1 | 1 | 0% | 6,053 | 9,503 | +57% | 0 | 0 | — |
case-02 | fail→pass | 23,794 | 10,465 | -56% | 1 | 1 | 0% | 2,835 | 10,441 | +268% | 0 | 0 | — |
case-03 | fail→pass | 10,766 | 6,942 | -36% | 1 | 1 | 0% | 1,924 | 9,898 | +414% | 0 | 0 | — |
case-13 | fail→pass | 25,328 | 4,365 | -83% | 1 | 1 | 0% | 4,869 | 9,653 | +98% | 0 | 0 | — |
case-05 | pass→pass | 3,805 | 3,384 | -11% | 1 | 1 | 0% | 440 | 9,338 | +2022% | 0 | 0 | — |
case-06 | pass→pass | 2,738 | 4,479 | +64% | 1 | 1 | 0% | 446 | 9,349 | +1996% | 0 | 0 | — |
case-07 | fail→pass | 15,459 | 4,730 | -69% | 1 | 1 | 0% | 2,730 | 9,756 | +257% | 0 | 0 | — |
case-08 | fail→pass | 18,418 | 4,798 | -74% | 1 | 1 | 0% | 3,397 | 9,783 | +188% | 0 | 0 | — |
case-09 | fail→pass | 9,266 | 3,197 | -65% | 1 | 1 | 0% | 1,369 | 9,483 | +593% | 0 | 0 | — |
case-10 | fail→pass | 12,215 | 3,167 | -74% | 1 | 1 | 0% | 2,678 | 9,562 | +257% | 0 | 0 | — |
case-11 | fail→pass | 21,823 | 4,416 | -80% | 1 | 1 | 0% | 4,178 | 9,774 | +134% | 0 | 0 | — |
case-12 | fail→pass | 14,884 | 5,903 | -60% | 1 | 1 | 0% | 3,102 | 10,099 | +226% | 0 | 0 | — |
case-14 | fail→pass | 14,733 | 2,985 | -80% | 1 | 1 | 0% | 1,985 | 9,301 | +369% | 0 | 0 | — |
case-15 | fail→pass | 16,075 | 3,170 | -80% | 1 | 1 | 0% | 3,366 | 9,412 | +180% | 0 | 0 | — |
case-16 | fail→pass | 11,649 | 3,536 | -70% | 1 | 1 | 0% | 1,799 | 9,584 | +433% | 0 | 0 | — |
case-17 | fail→pass | 12,679 | 3,826 | -70% | 1 | 1 | 0% | 1,663 | 9,532 | +473% | 0 | 0 | — |
case-18 | fail→pass | 7,277 | 3,149 | -57% | 1 | 1 | 0% | 1,302 | 9,356 | +619% | 0 | 0 | — |
case-19 | fail→fail | 5,331 | 2,229 | -58% | 1 | 1 | 0% | 881 | 9,302 | +956% | 0 | 0 | — |
case-20 | fail→pass | 5,298 | 2,929 | -45% | 1 | 1 | 0% | 1,056 | 9,458 | +796% | 0 | 0 | — |
case-21 | fail→pass | 15,907 | 3,292 | -79% | 1 | 1 | 0% | 1,300 | 9,372 | +621% | 0 | 0 | — |
case-22 | fail→pass | 23,986 | 3,934 | -84% | 1 | 1 | 0% | 4,128 | 9,650 | +134% | 0 | 0 | — |
case-23 | pass→pass | 16,196 | 3,048 | -81% | 1 | 1 | 0% | 2,265 | 9,365 | +313% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +78 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.