Revision 2bf4b7346eb13ff77a90b84e177d83f94f2377d9 authored by petrovich on 29 January 2019, 16:29:30 UTC, committed by Vladislav Kamenev on 04 February 2019, 16:04:05 UTC
1 parent 34b4118
Raw File
subsetES.R
#' Subsets es, if rows or columns are not specified, all are retained
#' @param es ExpressionSet object.#'
#' @param columns List of specified columns' indices (optional), indices start from 0#'
#' @param rows List of specified rows' indices (optional), indices start from 0
#' @return new expression set `es`
#'
#'
subsetES <- function(es, columns = c(), rows=c()) {
    rows <- getIndicesVector(rows, nrow(exprs(es)))
    columns <- getIndicesVector(columns, ncol(exprs(es)))

    es <- es[rows, columns]
    assign("es", es, envir = parent.frame())
}
back to top