Retrieve taxa by their identifiers
Limits the result to entities with given identifiers. A vector of identifiers. Identifiers can be the any of the following:
taxon ID
scientific name
common name Retrieval by ID is more efficient. Do not combine different identifiers in one query. For convenience, below is a list of officially supported taxa
ID | Comm.name | Scient.name | NcbiID |
1 | human | Homo sapiens | 9606 |
2 | mouse | Mus musculus | 10090 |
3 | rat | Rattus norvegicus | 10116 |
11 | yeast | Saccharomyces cerevisiae | 4932 |
12 | zebrafish | Danio rerio | 7955 |
13 | fly | Drosophila melanogaster | 7227 |
14 | worm | Caenorhabditis elegans | 6239 |
TRUE
to receive results as-is from Gemma, or FALSE
to enable
parsing. Raw results usually contain additional fields and flags that are
omitted in the parsed results.
Whether or not to save to cache for future calls with the
same inputs and use the result saved in cache if a result is already saved.
Doing options(gemma.memoised = TRUE)
will ensure that the cache is always
used. Use forget_gemma_memoised
to clear the cache.
The name of a file to save the results to, or NULL
to not write
results to a file. If raw == TRUE
, the output will be the raw endpoint from the
API, likely a JSON or a gzip file. Otherwise, it will be a RDS file.
Whether or not to overwrite if a file exists at the specified filename.
A data table with the queried taxa's details.
gemma.R:::get_taxa_by_ids(c("mouse", "human"))
#> taxon.name taxon.scientific taxon.ID taxon.NCBI taxon.database.name
#> <char> <char> <int> <int> <char>
#> 1: human Homo sapiens 1 9606 hg38
#> 2: mouse Mus musculus 2 10090 mm10
#> taxon.database.ID
#> <int>
#> 1: 87
#> 2: 81