getGoMolecularFunctions {readat} | R Documentation |
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.
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.
# 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)