Revision af8e0abf6b34a0a692c84dda8d9c02235a484628 authored by Vladislav Kamenev on 30 July 2018, 13:09:06 UTC, committed by Vladislav Kamenev on 30 July 2018, 13:09:06 UTC
1 parent f494947
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