library(ontoProc)
library(ontologyIndex)
cl3k = c("CL:0000492", "CL:0001054", "CL:0000236",
"CL:0000625", "CL:0000576",
"CL:0000623", "CL:0000451", "CL:0000556")
n3k = gsub(":", "_", cl3k)
cl2 = setup_entities("cl.owl")
litc = cl2[n3k]
alitc = ancestors(litc)
anames = ancestors_names(alitc)
alluse = unique(unlist(anames))
red = cl2[alluse]
myo = ontology_index(parents=parents(red), name=labels(red))
onto_plot2(myo, n3k)
#' visualize ontology selection via onto_plot2, based on owlents
#' @param x owlents instance
#' @param y character() vector of entries in x$clnames
#' @param \dots passed to onto_plot2
#' @examples
#' cl3k = c("CL:0000492", "CL:0001054", "CL:0000236",
#' "CL:0000625", "CL:0000576",
#' "CL:0000623", "CL:0000451", "CL:0000556")
#' cl3k = gsub(":", "_", cl3k)
#' clont_path = owl2cache(url="http://purl.obolibrary.org/obo/cl.owl")
#' clont = setup_entities(clont_path)
#' plot(clont[cl3k])
#' @export
plot.owlents = function(x, y, ...) {
oky = intersect(y, x$clnames)
if (length(oky)<2) stop("not enough selected names present in x$clnames")
litc = x[y]
alitc = ancestors(litc)
anames = ancestors_names(alitc)
alluse = unique(unlist(anames))
red = x[alluse]
myo = ontologyIndex::ontology_index(parents=parents(red),
name=labels(red))
onto_plot2(myo, n3k, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.