R/repMeans.R

Defines functions repMeans

Documented in repMeans

## x: matrix or data.frame with expression data
## flags: matrix or data.frame with spot flags
## use.flags: should flags be respected and in which way
##            NULL: flags are not used; minimum flag value of replicated spots
##                  is returned
##            'max': only spots with maximum flag value are used
##            'median': only spots with flag values larger or equal to median are used
##            'mean': only spots with flag values larger or equal to mean are used
## ndups: integer, number of replicates on chip. The number of rows of 'x' must 
##        be divisible by 'ndups'
## spacing: the spacing between the rows of 'x' corresponding to replicated spots, 
##          'spacing=1' for consecutive spots; cf. function unwrapdups in 
##          package 'limma'
repMeans <- function(x, flags, use.flags = NULL, ndups, spacing,
                     method, ...){
  if(any(dim(x) != dim(flags)))
    stop("wrong dimensions of 'x' and 'flags'")
  if(!isTRUE(all.equal(trunc(nrow(x)/ndups), nrow(x)/ndups)))
    stop("'nrow(x)' not divisible by 'ndups'")

  anz <- ncol(x)
  Exprs <- matrix(NA, nrow = nrow(x)/ndups, ncol = anz)
  Flags <- matrix(NA, nrow = nrow(x)/ndups, ncol = anz)

  ## to avoid depending on large package "limma"
  unwrapdups <- function (M, ndups = 2, spacing = 1){
    if (ndups == 1)
        return(M)
    M <- as.matrix(M)
    nspots <- dim(M)[1]
    nslides <- dim(M)[2]
    ngroups <- nspots/ndups/spacing
    dim(M) <- c(spacing, ndups, ngroups, nslides)
    M <- aperm(M, perm = c(1, 3, 2, 4))
    dim(M) <- c(spacing * ngroups, ndups * nslides)
    M
  }

  for(i in 1:anz){
    exprs.tmp <- unwrapdups(M = x[,i], ndups = ndups, spacing = spacing)
    flags.tmp <- unwrapdups(M = flags[,i], ndups = ndups, spacing = spacing)

    if(!is.null(use.flags)){
      if(use.flags == "max"){
        max.flags <- apply(flags.tmp, 1, max)
        max.flags <- matrix(rep(max.flags, ndups), ncol = ndups)
        is.max <- (flags.tmp == max.flags)
        exprs.tmp[!is.max] <- NA
        if(missing(method))
          Exprs[,i] <- rowMeans(exprs.tmp, na.rm = TRUE)
        else
          Exprs[,i] <- apply(exprs.tmp, 1, method, ...)
        Flags[,i] <- max.flags[,1]
      }
      if(use.flags == "median"){
        median.flags <- apply(flags.tmp, 1, median)
        median.flags <- matrix(rep(median.flags, ndups), ncol = ndups)
        is.median <- (flags.tmp >= median.flags)
        exprs.tmp[!is.median] <- NA
        if(missing(method))
          Exprs[,i] <- rowMeans(exprs.tmp, na.rm = TRUE)
        else
          Exprs[,i] <- apply(exprs.tmp, 1, method, ...)
        Flags[,i] <- median.flags[,1]
      }
      if(use.flags == "mean"){
        mean.flags <- apply(flags.tmp, 1, mean)
        mean.flags <- matrix(rep(mean.flags, ndups), ncol = ndups)
        is.mean <- (flags.tmp >= mean.flags)
        exprs.tmp[!is.mean] <- NA
        if(missing(method))
          Exprs[,i] <- rowMeans(exprs.tmp, na.rm = TRUE)
        else
          Exprs[,i] <- apply(exprs.tmp, 1, method, ...)
        Flags[,i] <- mean.flags[,1]
      }
      if(!use.flags %in% c("max", "median", "mean"))
        stop("wrong 'use.flags' specified")
    }else{
      if(missing(method))
        Exprs[,i] <- rowMeans(exprs.tmp, na.rm = TRUE)
      else
        Exprs[,i] <- apply(exprs.tmp, 1, method, ...)
      Flags[,i] <- apply(flags.tmp, 1, min)
    }
  }

  return(list(exprs = Exprs, flags = Flags))
}

Try the MKmisc package in your browser

Any scripts or data that you put into this service are public.

MKmisc documentation built on Nov. 20, 2022, 1:05 a.m.