select.HCABrowser: Select fields from a HCABrowser object

Description Usage Arguments Value Examples

View source: R/filter-utilities.R

Description

Select fields from a HCABrowser object

Usage

1
2
## 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

1
2
3
4
5
6
hca <- HCABrowser()
hca2 <- hca %>% select('paired_end')
hca2

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

HCABrowser documentation built on Nov. 8, 2020, 7:24 p.m.