select.HCABrowser {HCABrowser}R Documentation

Select fields from a HCABrowser object

Description

Select fields from a HCABrowser object

Usage

## S3 method for class 'HCABrowser'
select(.data, ..., .output_format = c("raw",
  "summary"))

Arguments

.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.

Value

a HCABrowser object containing the results of the selection.

Examples

hca <- HCABrowser()
hca2 <- hca %>% select('paired_end')
hca2

hca3 <- hca %>% select(c('organ.text', 'paired_end'))
hca3

[Package HCABrowser version 1.0.1 Index]