view {GenoGAM} | R Documentation |
Cbinding the columns all together and coercing to data.frame
view(object, ...) ## S4 method for signature 'GenomicTiles' view(object, ranges = NULL, seqnames = NULL, start = NULL, end = NULL)
object |
A |
... |
Additional arguments |
ranges |
A |
seqnames |
A chromosomes name. Either ranges or seqnames, start and end must be supplied |
start |
A start site. Either ranges or seqnames, start and end must be supplied |
end |
An end site. Either ranges or seqnames, start and end must be supplied |
A data.frame of the selected data.
Georg Stricker georg.stricker@in.tum.de
gt <- makeTestGenomicTiles() gr <- GRanges(c("chrI", "chrII"), IRanges(c(1, 10), c(40, 30))) head(view(gt, ranges = gr)) head(view(gt, seqnames = "chrI", start = 1, end = 20))