Get raw rows from the signature_feature_set table for one
or more signatures in the database.
Usage
getSignatureFeatureSet(
conn_handler = NULL,
signature_name = NULL,
signature_id = NULL,
verbose = TRUE
)
Arguments
- conn_handler
An R object obtained from SigRepo::newConnhandler() (required)
- signature_name
Name of signature to be returned.
- signature_id
Database ID of signature to be returned.
- verbose
Logical; whether or not to print the diagnostic messages.
Default is TRUE.
Examples
if (FALSE) { # \dontrun{
SigRepo::getSignatureFeatureSet(
conn_handler = conn_handler,
signature_id = 56,
verbose = TRUE
)
} # }