remove.sites,RnBSet-method {RnBeads} | R Documentation |
Removes the specified probes from the dataset.
## S4 method for signature 'RnBSet' remove.sites(object, probelist, verbose = FALSE) ## S4 method for signature 'RnBeadSet' remove.sites(object, probelist, verbose = TRUE) ## S4 method for signature 'RnBeadRawSet' remove.sites(object, probelist, verbose = TRUE)
object |
Dataset of interest. |
probelist |
List of probes to be removed in the form of a |
verbose |
if |
The modified dataset.
remove.samples
for removing samples from a methylation dataset
library(RnBeads.hg19) data(small.example.object) print(rnb.set.example) ## remove 100 random sites s2r<-sample.int(nrow(sites(rnb.set.example)), 100) rnb.set.f<-remove.sites(rnb.set.example, s2r) print(rnb.set.f)