resetSelect: Reset a select perform on an HCAExplorer object.

Description Usage Arguments Value See Also Examples

Description

This function will reset the selected slot of an HCAExplorer object to its default selection.

Usage

1
2
## S4 method for signature 'HCAExplorer'
resetSelect(x)

Arguments

x

An HCAExplorer Object

Value

An HCAExplorer object with its selected slot returned to its default value.

See Also

HCAExplorer for the HCAExplorer class, select for how to make the initial selection.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
 
 ## Initiate an HCAExplorer Object.
 x <- HCAExplorer()
 ## View object to decide which colums to select.
 x

 ## Decide to select columns 'projcts.projectTitle' and 'samples.organ'.
 x <- x %>% select('project.projectTitle', 'samples.organ')
 x

 ## Revert selec() with resetSelect()
 x <- resetSelect(x)
 x

Bioconductor/HCAExplorer documentation built on Feb. 13, 2021, 7:07 a.m.