R/exprSubset.R

Defines functions exprSubset

exprSubset <- function(exprSet, subset){
  ## Creates a subset of an ExpressionSet that contains only specified featureNames.
  newSet <- exprSet[featureNames(exprSet) %in% subset, ]
  return(newSet)
}

Try the TPP package in your browser

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

TPP documentation built on Nov. 8, 2020, 5:55 p.m.