Get_AllComparisons: Returns list that contains a list of the statistical tests...

Description Usage Arguments Value Author(s) Examples

View source: R/DiffAnalysis.R

Description

This method returns a list of the statistical tests performed with DAPAR and recorded in an object of class MSnSet.

Usage

1

Arguments

obj

An object of class MSnSet.

Value

A list of two slots: logFC and P_Value

Author(s)

Samuel Wieczorek

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
utils::data(Exp1_R25_pept, package='DAPARdata')
obj <- Exp1_R25_pept
keepThat <- mvFilterGetIndices(obj, condition='WholeMatrix', threshold=ncol(obj))
obj <- mvFilterFromIndices(obj, keepThat)
qData <- Biobase::exprs(obj)
sTab <- Biobase::pData(obj)
allComp <- limmaCompleteTest(qData,sTab)
data <- list(logFC=allComp$logFC[1], P_Value = allComp$P_Value[1])
obj <- diffAnaSave(obj, allComp, data)
ll <- Get_AllComparisons(obj)

DAPAR documentation built on April 11, 2021, 6 p.m.