R/fullNameExists.R

Defines functions fullNameExists

Documented in fullNameExists

fullNameExists <- function(name=NA){
  exists = NULL
  if (!is.na(name)) {
    exists <- .jcall(
     "org/bridgedb/DataSource",
     "Z",
     "fullNameExists",name
    )
  } else {
    stop("You must provide a name")
  }
   exists
}

Try the BridgeDbR package in your browser

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

BridgeDbR documentation built on Nov. 8, 2020, 5:09 p.m.