Description Usage Arguments Value Examples
Exports data in Dotmatics format for an IncucyteDRCSet or IncucyteDRCSetList object that represents a full plate of data. The platemap must be provided as an IncucyteDRCPlatemap object and should correspond to the data contained in the IncucyteDRCSet or IncucyteDRCSetList object.
1 | exportDRCDataToDotmatics(idrc_set_list, platemap)
|
idrc_set_list |
IncucyteDRCSetList object |
platemap |
IncucyteDRCPlatemap object from importPlatemap or importPlatemapXML |
list object with samplelist and data elements
1 2 3 4 5 6 7 8 9 10 11 12 13 | pm_file <- system.file(file='extdata/example.PlateMap', package='IncucyteDRC')
test_pm <- importPlatemapXML(pm_file)
data_file <- system.file(file='extdata/example_data.txt', package='IncucyteDRC')
test_data <- importIncucyteData(data_file, metric='pc')
test_drc <- splitIncucyteDRCPlateData(test_pm, test_data, group_columns='growthcondition')
test_drc <- lapply(test_drc, fitGrowthCurvesIndividual)
test_drc <- lapply(test_drc, fitGrowthCurvesGrouped)
test_drc <- lapply(test_drc, calculateDRCData, cut_time=100)
print(test_drc)
print(test_drc[[2]])
exportDRCDataToDotmatics(test_drc, test_pm)
exportDRCDataToDotmatics(test_drc[[2]], test_pm)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.