swh:1:snp:da7139cd4da02bec94bc08ca2c24ef3b054abc2b
Raw File
Tip revision: bc3f225ce88fe6137237e5f248b11f1daaf3dd1e authored by Alexey Sergushichev on 07 August 2018, 12:34:59 UTC
update static
Tip revision: bc3f225
probeDataset.R
probeDataset <- function (es, indices) {
    response <- list()
    response[['dims']] <- dim(exprs(es))
    response[['fvarLabels']] <- colnames(fData(es))
    response[['probe']] <- exprs(es)[indices]

    jsonlite::toJSON(response)
}
back to top