select.HCABrowser {HCABrowser} | R Documentation |
Select fields from a HCABrowser object
## S3 method for class 'HCABrowser' select(.data, ..., .output_format = c("raw", "summary"))
.data |
an HCABrowser object to perform a selection on |
... |
further argument to be tranlated into an expression to select from. These arguments can be passed in two ways, either as a character vector or as a series of expressions that are the fields that are to be selected seperated by commas. |
.output_format |
unused. |
a HCABrowser object containing the results of the selection.
hca <- HCABrowser() hca2 <- hca %>% select('paired_end') hca2 hca3 <- hca %>% select(c('organ.text', 'paired_end')) hca3