psva: A function for estimating surrogate variables with the two...

Description Usage Arguments Value Author(s) Examples

View source: R/psva.R

Description

This function is the implementation of the two step approach for estimating surrogate variables proposed by Leek and Storey 2007 PLoS Genetics. This function is primarily included for backwards compatibility. Newer versions of the sva algorithm are available through sva, svaseq, with low level functionality available through irwsva.build and ssva.

Usage

1
psva(dat, batch, ...)

Arguments

dat

The transformed data matrix with the variables in rows and samples in columns

batch

A factor variable giving the known batch levels

...

Other arguments to the sva function.

Value

psva.D Data with batch effect removed but biological heterogeneity preserved

Author(s)

Elana J. Fertig

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
library(bladderbatch)
library(limma)
data(bladderdata)
dat <- bladderEset[1:50,]

pheno = pData(dat)
edata = exprs(dat)
batch = pheno$batch
batch.fac = as.factor(batch)

psva_data <- psva(edata,batch.fac)

steveneschrich/msva documentation built on Dec. 23, 2021, 5:33 a.m.