prot2D-package: Statistics Tools for data issued from a 2D Gel...

Description Details Author(s) References See Also Examples

Description

The purpose of this package is to analyze (i.e. Normalize and select significant spots) data issued from 2D GEl experiments

Details

This package provides a simple interface for analysing data from 2D gel experiments. Functions for performing normalization as well as selecting significant spots are provided. All the functions for selecting significant spots are adapted from functions for microarray analysis provided by Bioconductor and CRAN, and all credits go to the authors of these functions. For analyzing 2D gel experiments data, users are advised to follow theses steps :

  1. Normalize data using Norm.qt

  2. Coerce data into an ExpressionSet using ES.prot

  3. Use normalized data to find differentially expressed proteins with FDR-controled functions: modT.Prot was find to be the more efficient for 2-DE (see Artigaud et al , 2013) but other functions are provided (ttest.Prot,samT.Prot,efronT.Prot, ,shrinkT.Prot)

Author(s)

Sebastien Artigaud sebastien.artigaud@gmx.com

References

See Also

ExpressionSet, fdrtool

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(pecten)
data(pecten.fac)

pecten.norm <- Norm.qt(pecten, n1=6, n2=6, plot=TRUE) #Quantiles normalization of the data
ES.p <- ES.prot(pecten.norm, n1=6, n2=6, f=pecten.fac)
x <- modT.Prot(ES.p, fdr.thr=0.1, plot=TRUE)
featureNames(x) # Names of the spots selected for a moderated t-test with a fdr of 0.1
fData(x) # Displaying fold change (as log2(ratio)) for selected spots
exprs(x) # Normalized volume data for all the selected spots
## Not run: heatplot(x) #Great heatmap of the selected spots (requires made4 Bioconductor package )

prot2D documentation built on May 1, 2019, 11:54 p.m.