ids {GenomicDataCommons} | R Documentation |
The GDC assigns ids (in the form of uuids) to objects in its database. Those ids can be used for relationships, searching on the website, and as unique ids. All
ids(x) ## S3 method for class 'GDCManifest' ids(x) ## S3 method for class 'GDCQuery' ids(x) ## S3 method for class 'GDCResults' ids(x) ## S3 method for class 'GDCResponse' ids(x)
x |
A |
a character vector of all the entity ids
# use with a GDC query, in this case for "cases" ids(cases() %>% filter(~ project.project_id == "TCGA-CHOL")) # also works for responses ids(response(files())) # and results ids(results(cases()))