Save experiment details to csv file

cyto_details_save(x, save_as = NULL)

Arguments

x

object of class flowSet or GatingSet annotated with experiment details.

save_as

name of csv file to which the experiment details shuld be saved.

Value

write experiment details to named csv file.

Author

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

Examples

if (FALSE) { library(CytoExploreRData) # Activation GatingSet gs <- GatingSet(Activation) # Modify experiment details manually cyto_details(gs)$Treatment <- c( rep("A", 8), rep("B", 8), rep("C", 8), rep("D", 8), NA ) # Save experiment details to file cyto_details_save(gs) }