Revision 28791c53c1f14e76810048c9dc263b9b90a100cc authored by Vladislav Kamenev on 13 August 2018, 16:14:13 UTC, committed by Vladislav Kamenev on 13 August 2018, 16:14:13 UTC
1 parent 6298a56
Raw File
calculatedAnnotation.R
#' Create calculated annotation
#'
#' \code{calculatedAnnotation} adds a column calculated by operation
#'
#' @param es ExpressionSet object.
#' @param operation Name of the operation to perform calculation
#' @param columns List of specified columns' indices (optional), indices start from 0#'
#' @param rows List of specified rows' indices (optional), indices start from 0
#' @param isColumns Apply fn to columns
#'
#' @import Biobase
#'

calculatedAnnotation <- function (es, operation, rows = c(), columns = c(), isColumns = FALSE) {
    rows <- getIndicesVector(rows, nrow(exprs(es)))
    columns <- getIndicesVector(columns, ncol(exprs(es)))

    fn <- tolower(operation)
    if (!isColumns) {
        fData(es)[[operation]] <- NA
        fData(es)[[operation]][rows] <- apply(exprs(es[rows,columns]), 1, fn)
    } else {
        phenoData(es)[[operation]] <- NA
        phenoData(es)[[operation]][columns] <- apply(exprs(es[rows,columns]), 2, fn)
    }

    assign("es", es, envir = parent.frame())

}
back to top