Info
Fetch extensive gene and transcript metadata from Ensembl, Uniprot, and NCBI.
Arguments
Name | Short | Long | Description |
---|---|---|---|
Species | -s | --species | Species name to use: currently this MUST match the taxon_id [default: homo_sapiens] |
Taxon ID | -t | --taxon-id | Taxon ID to use: currently this MUST match the taxon_id [default: homo_sapiens] |
Output | -o | --output | optional filepath to write output to [default=stdout] |
Command Line Usage
# Queries information for single term
ggetrs info AP2S1
# Queries information for multiple terms
ggetrs info AP2S1 RFX3 NSD1
Python
import ggetrs
# Queries information for single term
ggetrs.info(["AP2S1"])
# Queries information for multiple terms
ggetrs.info(["AP2S1", "RFX3", "NSD1"])