RGLab / flowWorkspace

flowWorkspace
GNU Affero General Public License v3.0
44 stars 21 forks source link

Old code getData error #357

Open fbenedett opened 3 years ago

fbenedett commented 3 years ago

Hello,

I have to run a piece of code that was developed 2 years ago. At that time I had a gating strategy written in a CSV file and I was reading and running it as follows:

dtTemplate <- fread("../basic_gating.csv")
gt_cell=gatingTemplate("../basic_gating.csv")
gs=GatingSet(fset)
gating(gt_cell, gs)
singlets=getData(gs, y="singlets")

Now the last command returns the following error:

Error in getData(gs, y = "singlets") : unused argument (y = "singlets") At that time the command was returning the FlowSet at the "singlet" node, now I can't get the same. Could anybody help, please?

mikejiang commented 3 years ago

The legacy code is not supported. Pls use gs_pop_get_data instead.