Closed Biomiha closed 4 years ago
Could you please provide the output of sessionInfo()
when you get this error. I'm guessing your CytoML
installation is just behind the other packages, but I can verify that if I can see all of the package versions.
And if you want a GatingSet
without gates, you can just load the fcs files for the corresponding samples in as a cytoset
using load_cytoset_from_fcs
. That will just have the ungated data. You could then coerce to a GatingSet
if you wanted to start gating analysis from scratch (just the root node) rather than using the gates from the workspace.
Hi @jacobpwagner ,
Thank you so much. I upgraded to CytoML v2.0.0 and it's fixed the problem. Apologies for such an inane issue. With regard to the transformations, it was more about getting the transformation objects rather than the naked gs. However, now that I am able to save the full workspace, I can always pull the transformations from the gs.
Many thanks again.
Hi,
I'm trying to parse a BD Diva workspace into an openCyto GatingSet. My code is quite simple:
This is the console output (verbatim):
It seems that it's done everything ... parsed the data, applied the compensation, transformation and gates but then unfortunately it falls short at the last hurdle with a missing pointer error.
On a related note, is there a way of extracting the transformation information separately in order to be able to generate a gating set without gates?
Thanks.