R/PMindex.R

Defines functions BGindex PMindex

Documented in BGindex PMindex

PMindex <- function(probeAnno) {
  isPM = logical(length(probeAnno$probeReverse$no_feature))
  for (j in probeAnno$probeReverse)
    isPM[as.character(j) != ""] = TRUE
  which(isPM)
}

BGindex <- function(probeAnno) {
  which(probeAnno$probeReverse$no_feature == "no" & probeAnno$probeDirect$no_feature == "no")
}

Try the tilingArray package in your browser

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

tilingArray documentation built on Nov. 8, 2020, 10:59 p.m.