importIncucyteData: importIncucyteData

Description Usage Arguments Value Examples

View source: R/importIncucyteData.R

Description

Imports data exported from Incucyte Zoom software- NEED MORE DOCUMENTATION HERE ABOUT HOW TO DO EXPORT!!

Usage

1
importIncucyteData(filepath, metric = "pc", plateid = basename(filepath))

Arguments

filepath

Path to a data file generated by the Incucyte Zoom software

metric

Metric must be either pc (percent confluence) or ca (confluence area). Default is pc.

plateid

An identifier for the plate. If set to NULL then filename used as default

Value

IncucyteDRCPlateData object

Examples

1
2
3
4
5
6
7
8
9
#dataset 1
data_file1 <- system.file(file='extdata/example_data.txt', package='IncucyteDRC')
test_data1 <- importIncucyteData(data_file1, metric='pc')
test_data1
head(test_data1$data)

#dataset 2
data_file2 <- system.file(file='extdata/example_data2.txt', package='IncucyteDRC')
test_data2 <- importIncucyteData(data_file2, metric='pc')

IncucyteDRC documentation built on May 2, 2019, 8:32 a.m.