cellLoad: Data importing

Description Usage Arguments Details Value Examples

Description

Extracts data of a specific type in a list of expData objects to initialize a cellData object.

Usage

1
2
3
4
5
cellLoad(object, lstPlates, ...)

## S4 method for signature 'cellData'
cellLoad(object, lstPlates, positive.ctr = NULL,
  negative.ctr = NULL, neglect.well = NULL, expwell = NULL)

Arguments

object

a cellData object

lstPlates

a list of expData objects

...

other parameters

positive.ctr

a character vector, the positive control well IDs, e.g. c("E05", "E06")

negative.ctr

a character vector, the positive control well IDs, e.g. c("B05", "B06")

neglect.well

a character vector, the neglect wells. Accept regular expression, e.g. c("*02", "*23")

expwell

include all wells except control and neglect.well if NULL

Details

negative.ctr accept regular expression

Value

a cellData object, with initialized slot origin.data

Examples

1
2
3
4
5
6
7
8
data(platemap)
platemap$Path <- file.path(
system.file("Test", package = "OperaMate"), platemap$Path)
data(demoCell)
datapath <- file.path(system.file("Test", package = "OperaMate"), "Matrix")
lstPlates <- loadAll(cellformat = "Matrix", datapath = datapath)
oneCell <- cellLoad(oneCell, lstPlates, neglect.well = c("*02", "*23"))
str(oneCell["origin.data"])

OperaMate documentation built on Nov. 17, 2017, 1:55 p.m.