R/AllClasses.R

setClass("BioassayDB", representation=representation(database="SQLiteConnection"))

setClass("bioassay", representation=representation(
    aid = "character",
    source_id = "character",
    assay_type = "character",
    organism = "character",
    scoring = "character",
    targets = "character",
    target_types = "character",
    scores = "data.frame"
))

setClass("bioassaySet", representation=representation(
    activity = "dgCMatrix",
    scores = "dgCMatrix",
    targets = "dgCMatrix",
    sources = "data.frame",
    source_id = "integer",
    assay_type = "character",
    organism = "character",
    scoring = "character",
    target_types = "character"
))

Try the bioassayR package in your browser

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

bioassayR documentation built on March 1, 2021, 2 a.m.