Search

Searches through descriptions on ENSEMBL using free-form search terms.

Arguments

NameShortLongDescription
Database-d--databaseName of Ensembl database to use.
Species-s--speciesSpecies used in database [default: homo_sapiens]
Database Type-t--db-typeDatabase type specified by Ensembl [default: core]
Release-r--releaserelease version number to use for database
Assembly-a--assemblyAssembly to use for species [default: 38]
Output-o--outputoptional filepath to write output to [default=stdout]

Command Line Interface

# searches Ensembl for all genes with `clathrin` in the description
ggetrs search clathrin

# searches Ensembl for all genes with `clathrin` OR `heavy` in the description
ggetrs search clathrin heavy

# searchs Ensembl for all genes with `clathrin heavy` in the description
ggetrs search "clathrin heavy"

Python

import ggetrs

# searches Ensembl for all genes with `clathrin` in the description
ggetrs.search(["clathrin"])

# searches Ensembl for all genes with `clathrin` or `heavy` in the description
ggetrs.search(["clathrin", "heavy"])

# searchs Ensembl for all genes with `clathrin heavy` in the description
ggetrs.search(["clathrin heavy"])