Hi there, I want to export populations as a data frame starting from a FlowJo workspace, and I am stuck after this step:
ws <- open_flowjo_xml("flowjo_workspace.wsp")
gs <- flowjo_to_gatingset(ws, name = 1, path = "all-fcs-files", execute = TRUE)
gate1 <- gs_pop_get_gate(gs, "CD8+")
gate1dat <- gs_pop_get_data(gs, y = "CD8+")
Also, gate1dat seems to be empty. I aim to load a FlowJo workspace, export events/cells per population, and concatenate them in a single file for all the samples. Any suggestions would be helpful. Thanks!