Nothing
extractRanges <-function(dmrcoutput, genome=c("hg19", "hg38", "mm10"))
{
genome <- match.arg(genome)
if(!is(dmrcoutput, "DMResults")){
stop("Error: dmrcoutput is not a DMResults object. Please create one with dmrcate().")
}
coords <- extractCoords(dmrcoutput@coord)
coords <- cbind(coords, dmrcoutput@no.cpgs, dmrcoutput@min_smoothed_fdr, dmrcoutput@Stouffer,
dmrcoutput@HMFDR, dmrcoutput@Fisher, dmrcoutput@maxdiff, dmrcoutput@meandiff)
coords$chromStart <- as.integer(as.character(coords$chromStart))
coords$chromEnd <- as.integer(as.character(coords$chromEnd))
ranges <- makeGRangesFromDataFrame(coords, keep.extra.columns = TRUE)
eh = ExperimentHub()
switch(genome,
hg19={grt=eh[["EH3132"]]},
hg38={grt=eh[["EH3134"]]},
mm10={grt=eh[["EH3136"]]}
)
genesidx <- as.data.frame(findOverlaps(ranges, grt))
genesover <- tapply(genesidx$subjectHits, genesidx$queryHits, function(x) grt$symbol[x])
op.A <- sapply(genesover, function(l) paste(l, collapse= ", "))
name.A <- names(genesover)
m.A <- as.numeric(name.A)
M <- length(ranges)
overlapping.genes <- rep(NA_character_, M)
overlapping.genes[m.A] <- op.A
ranges$overlapping.genes <- overlapping.genes
colnames(values(ranges)) <- sub("dmrcoutput@", "", colnames(values(ranges)))
ranges
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.