difExprs: Differential expression analysis using two different methods.

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/difExprs.R

Description

Using the expression matrix calculate the differential expressed genes to two class analysis and fixing an expected FDR value. The methods are SAM and ACDE.

Usage

1
difExprs(expData, treatment, fdr, DifferentialMethod, plotting = FALSE)

Arguments

expData

A matrix with the expression matrix, it may be stored in a SummarizedExperiment object.

treatment

A vector with the ientifiers of the classes, 0 to control and 1 to case.

fdr

The expected FDR value.

DifferentialMethod

The method to calculate the differential expressed genes, can be "sam" or "acde"

plotting

The option to show the result in a plot. By default FALSE.

Value

A data.frame with the expression matrix to the expressed diferential genes only.

Author(s)

Juan David Henao <judhenaosa@unal.edu.co>

References

Tusher, V. G., Tibshirani, R., & Chu, G. (2001). Significance analysis of microarrays applied to the ionizing radiation response. Proceedings of the National Academy of Sciences, 98(9), 5116-5121.

Acosta J and Lopez-Kleine L (2015). acde: Artificial Components Detection of Differentially Expressed Genes. R package version 1.4.0.

See Also

exprMat to obtain the expression matrix.

Examples

1
2
3
4
5
6
7
8
9
## Loading the expression matrix

treat <- c(rep(0,10),rep(1,10))
norm <- read.table(system.file("extdata","expression_example.txt",package = "coexnet"))

## Running the function using both approaches

sam <- difExprs(expData = norm,treatment = treat,fdr = 0.2,DifferentialMethod = "sam")
acde <- difExprs(expData = norm,treatment = treat,fdr = 0.2,DifferentialMethod = "acde")

coexnet documentation built on Nov. 8, 2020, 8:07 p.m.