###############################################################################
#' getRegion
#'
#' A method to query features within a genomic region from Cellbase web
#' services.
#' @details This method retrieves various genomic features from a given
#' region including genes, snps, clincally relevant variants, proteins, etc.
#' @aliases getRegion
#' @param object an object of class CellBaseR
#' @param ids a character vector of the regions to be queried, for example,
#' "1:1000000-1200000' should always be in the
#' form 'chr:start-end'
#' @param resource a character vector to specify the resource to be queried
#' @param param a object of class CellBaseParam specifying additional param
#' for the query
#' @return a dataframe with the results of the query
#' @examples
#' cb <- CellBaseR()
#' res <- getRegion(object=cb, ids="17:1000000-1200000", resource="gene")
#' @seealso \url{https://github.com/opencb/cellbase/wiki}
#' and the RESTful API documentation
#' \url{http://bioinfo.hpc.cam.ac.uk/cellbase/webservices/}
#' @export
setMethod("getRegion", "CellBaseR", definition = function(object, ids, resource,
param=NULL) {
categ <- "genomic"
subcateg<- "region"
ids <- ids
resource <- resource
if (!is.null(param)){
param <- c(genome=param@genome, gene=param@gene,
region=param@region, rs=param@rs,so=param@so,
phenotype=param@phenotype, limit=param@limit,
include=param@include, exclude=param@exclude,
limit=param@limit)
param <- paste(param, collapse = "&")
}
result <- fetchCellbase(object=object, file=NULL, meta=NULL, categ=categ,
subcateg=subcateg, ids=ids, resource=resource,
param=param)
return(result)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.