Learn R Programming

methylPipe (version 1.6.2)

BSdataSet-class: Class "BSdataSet"

Description

This class is used in the methylPipe library to store a set of BSdata objects

Arguments

Objects from the Class

Objects can be created by calls of the form new("BSdataSet", ...) or using the function BSdataSet(org,Objlist,names), see below.

See Also

BSdata-class,findDMR

Examples

Run this code
require(BSgenome.Hsapiens.UCSC.hg18)
uncov_GR <- GRanges(Rle('chr20'), IRanges(c(14350,69251,84185), c(18349,73250,88184)))
H1data <- system.file('extdata', 'H1_chr20_CG_10k_tabix_out.txt.gz', package='methylPipe')
H1.db <- BSdata(file=H1data, uncov=uncov_GR, org=Hsapiens)
IMR90data <- system.file('extdata', 'IMR90_chr20_CG_10k_tabix_out.txt.gz', package='methylPipe')
IMR90.db <- BSdata(file=IMR90data, uncov=uncov_GR, org=Hsapiens)
H1.IMR90.set <- BSdataSet(org=Hsapiens, group=c("C","E"), IMR90=IMR90.db, H1=H1.db)

Run the code above in your browser using DataLab