You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When working with an experiment containing a channel transformed with logtGml2_trans, I can save the GatingSet with save_gs but using load_gs triggers the following error:
Error in .cpp_loadGatingSet(path, backend_readonly, select.sn, verbose, :
unknown type of transformation archive!
Here is a reproducible example:
library(flowWorkspace)
data(GvHD,package = "flowCore")
gs <- GatingSet(GvHD[1:4])
transList <- transformerList(c("FL1-H","FL2-H"),
list(asinhtGml2_trans(),
logtGml2_trans()))
gs <- transform(gs,transList
gh_get_transformations(gs[[1]])
temp.dir <- file.path(tempdir(),"gmlTrans")
save_gs(gs,temp.dir,backend_opt = "move")
## the following command triggers an error
res <- load_gs(temp.dir)
The text was updated successfully, but these errors were encountered:
Thank you for reporting the error, I pushed the fix, it should work now.
The fix is also merged into bioconductor the current release and development branch which will appear in one or two days
When working with an experiment containing a channel transformed with
logtGml2_trans
, I can save the GatingSet withsave_gs
but usingload_gs
triggers the following error:Here is a reproducible example:
The text was updated successfully, but these errors were encountered: