Revision 263ba6806043008f64ba5ce47e0f30f98acda996 authored by Vladislav Kamenev on 30 July 2018, 14:02:43 UTC, committed by Vladislav Kamenev on 30 July 2018, 14:02:43 UTC
1 parent af8e0ab
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