maProcessing: Pre-processing of microarray datasets

Description Usage Arguments Value Author(s) Examples

View source: R/maProcessing.R

Description

This helper function pre-processes microarray datasets by performing an exponentiation with number 2 as the base on the expression values.

Usage

1
maProcessing(expr, exprmat)

Arguments

expr

A numeric vector with gene expression values

exprmat

A numeric matrix with expression series data with variables as rownames.

Value

Returns a numeric vector with the exponentiated expression values.

Author(s)

David Lauenstein

Examples

1
2
3
4
5
# Example based on the heat-shock dataset
data(heat)
heat = as.matrix(heat)
# Run the findPeaks function for the first gene in the expression matrix
peaks <- maProcessing(heat[1,], heat)

Biopeak documentation built on Aug. 21, 2019, 5:10 p.m.