R/listBe.R

Defines functions listBe

Documented in listBe

#' Lists all the biological entities (BE) available in the BED database
#'
#' @return A character vector of biological entities (BE)
#'
#' @seealso [listPlatforms], [listBeIdSources],
#' [listOrganisms]
#'
#' @export
#'
listBe <- function(){
   toRet <- bedCall(
   neo2R::cypher,
   query='MATCH (n:BEType) return n.value as be'
   )
   return(toRet$be)
}

Try the BED package in your browser

Any scripts or data that you put into this service are public.

BED documentation built on March 7, 2023, 6:54 p.m.