RPPA-class {SuperCurve} | R Documentation |
The RPPA class represents the raw quantification data from a reverse-phase protein array experiment.
RPPA(filename, path = ".") ## S4 method for signature 'RPPA': summary(object, ...) ## S4 method for signature 'RPPA': image(x, measure = "Mean.Net", main = measure, colorbar = FALSE, col = terrain.colors(256), ...)
filename |
The name of a file containing MicroVigene quantifications of a reverse-phase protein array experiment. |
path |
An optional argument giving the path from the current directory to the file. The default value assumes the file is contained in the current direectory. |
object |
An RPPA object. |
x |
An RPPA object. |
measure |
A character string containing the name of the
measurement column in data that should be displayed by the
image method. |
main |
A character string used to title the image plot |
colorbar |
A logical value that determines whether to include a color bar in the plot. Default is FALSE. |
col |
The usual graphics parameter used by image. It is included here to change the default color scheme to use terrain.colors. |
... |
The usual extra arguments for generic or plotting routines. |
The data frame slot (data
) in a valid RPPA object constructed
from a MicroVigene input file using the RPPA
function is
guaranteed to contain at least 6 columns of information:
Main.Row
, Main.Col
, Sub.Row
, Sub.Col
,
Sample
, and Mean.Net
. The first four pieces of
information give the logical location of a spot on an array, after
which we get a unique identifier of the sample spotted at that
location and a measurement that represents the background-corrected
mean intensity of the spot. Additional columns may be included or may
be added later.
The RPPA
constructor returns an object of the RPPA
class.
The summary
method returns a summary of the underlying data
frame.
The image
method invisibly returns the RPPA
object on
which it was invoked.
Although objects of the class can be created by a direct call to
new, the preferred method is to use the RPPA
function.
data
:file
:measure
argument. The colors in the image represent the
intensity of the measurement at each spot on the array, and the
display locations match the row and column locations of the spot.
Any measurement column can be displayed using this function. An
optional color bar can be added; this will be placed at the right
edge.Kevin R. Coombes <kcoombes@mdanderson.org>
KRC
path <- system.file("rppaTumorData", package="SuperCurve") erk2 <- RPPA("ERK2.txt", path=path) summary(erk2) image(erk2) image(erk2, colorbar=TRUE) image(erk2, "Vol.Bkg", main="Background Estimates", colorbar=TRUE)