Description Usage Arguments Value Examples
View source: R/get-annotations.R
Gets the GO definitions associated with SomaLogic Sequence IDs. There are three datasets, one for each of these domains: molecular function, biological process, and cellular compartment.
1 2 3 4 5 | getGoMolecularFunctions(aptamerIds = NULL, simplify = FALSE)
getGoBiologicalProcesses(aptamerIds = NULL, simplify = FALSE)
getGoCellularComponents(aptamerIds = NULL, simplify = FALSE)
|
aptamerIds |
A character vector of SomaLogic Sequence IDs, or |
simplify |
Logical. Should the output be collapsed into a single data.frame? |
A list of data frames. The names of the list are the input aptamerIds, and the data frame associated with that element contains:
Character. UniProt ID for the protein target.
Character. GO ID for property of the target protein.
Character. Name corresponding to the GO ID.
Character. Description corresponding to the GO ID.
1 2 3 4 5 6 7 8 9 10 11 12 | # Each AptamerId may have one, many, or zero associated GO descriptions
getGoMolecularFunctions(c("2278-61", "3505-6", "4916-2"))
getGoBiologicalProcesses(c("2278-61", "3505-6", "4916-2"))
getGoCellularComponents(c("2278-61", "3505-6", "4916-2"))
# Get everything in the 1310 and 1129 panels.
## Not run:
getGoMolecularFunctions()
getGoBiologicalProcesses()
getGoCellularComponents()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.