Read in a gatingTemplate object or gatingTemplate csv file

cyto_gatingTemplate_read(gatingTemplate = NULL, data.table = FALSE, ...)

Arguments

gatingTemplate

gatingTemplate object or the name of a gatingTemplate csv file to read in.

data.table

logical indicating whether the gatingTemplate should be read into a data.table, set to FALSE by default to use data.frame.

...

additional arguments passed to fread.

Author

Dillon Hammill, Dillon.Hammill@anu.edu.au

Examples

if (FALSE) { library(CytoExploreRData) # gatingTemplate gt <- cyto_gatingTemplate_read(Activation_gatingTemplate) # write gatingTemplate cyto_gatingTemplate_write(gt, "gatingTemplate.csv") # gatingTemplate csv file gt <- cyto_gatingTemplate_read("gatingTemplate.csv") }