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)
}
patzaw/BED documentation built on April 30, 2024, 5:31 a.m.