Utility to update a provided soma_adat
object's column
metadata to match the annotations object.
Arguments
- adat
A
soma_adat
data object to update attributes.- anno
A
tibble
containing analyte-specific annotations fromread_annotations()
Details
Attempts to update the following column metadata in the adat:
SomaId
Target
TargetFullName
UniProt
Type
Organism
EntrezGeneSymbol
EntrezGeneID
Examples
if (FALSE) { # \dontrun{
anno_tbl <- read_annotations("path/to/annotations.xlsx")
adat <- read_adat("path/to/adat_file.adat")
updated_adat <- updateColMeta(adat, anno_tbl)
} # }