R/AllClasses.R

################################################################################
##
## Filename: AllClasses.R
##
## Author: Errol Strain
##
## Data: Apr 27, 2007
##
## Description: Class for analyzing plate based flow cytometry experiments.
##
################################################################################

setClass("flowPlate",                   
	representation(
		plateName="character",
		plateSet="flowSet",
		wellAnnotation="data.frame"
	),
	prototype=list(
		plateName=character(0),
		plateConfig=data.frame(),
		wellAnnotation=data.frame()
	)
)

Try the plateCore package in your browser

Any scripts or data that you put into this service are public.

plateCore documentation built on May 6, 2019, 2:41 a.m.