Revision 500631814632f21a69721751d7edfdcb4ce3896a authored by Alexey Sergushichev on 01 August 2018, 18:18:39 UTC, committed by Alexey Sergushichev on 01 August 2018, 18:18:39 UTC
1 parent 2f41a12
Raw File
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