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
}
egonw/BridgeDbR documentation built on Sept. 18, 2023, 8:14 p.m.