R/classes.R

#

setClass("tsLib", representation(
	Name    = "character",
	RI      = "numeric",
	medRI   = "numeric",
	RIdev   = "matrix",
	selMass = "list",
	topMass = "list",
	quantMass = "numeric",
	libData = "data.frame",
	spectra = "list"
))

setClass("tsRim", representation(
	limits   = "matrix",
	standard = "numeric",
	mass     = "numeric")
)

setClass("tsSample", representation(
	Names    = "character",
	CDFfiles = "character",
	RIfiles  = "character",
	CDFpath  = "character",
	RIpath   = "character",
	days     = "character",
	data     = "data.frame")
)

setClass("tsMSdata", representation(
	RI        = "list",
	RT        = "list",
	Intensity = "list"
))

setClass("tsProfile", representation(
	"tsMSdata",
	info    = "data.frame",
	profInt = "matrix",
	profRI  = "matrix",
	profRT  = "matrix"
))

Try the TargetSearch package in your browser

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

TargetSearch documentation built on March 12, 2021, 2 a.m.