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
To Reproduce
Steps to reproduce the behavior:
Run this code snippet
# example code
gs <- load_gs(system.file("extdata/gs_DC_auto", package = "flowWorkspaceData"))
fr <- gh_pop_get_data(gs[[2]], "HLADR+", returnType = "flowFrame")
chnl <- c("CD11c", "CD123")
p <- autoplot(fr, chnl[1], chnl[2])
g <- openCyto:::.quadGate.tmix(fr, channels = chnl, K = 3, usePrior = "no")
p + geom_gate(g)
The snippet results in the following
> # example code
> gs <- load_gs(system.file("extdata/gs_DC_auto", package = "flowWorkspaceData"))
> fr <- gh_pop_get_data(gs[[2]], "HLADR+", returnType = "flowFrame")
> chnl <- c("CD11c", "CD123")
> p <- autoplot(fr, chnl[1], chnl[2])
> g <- openCyto:::.quadGate.tmix(fr, channels = chnl, K = 3, usePrior = "no")
Error in UseMethod("filter") :
no applicable method for 'filter' applied to an object of class "flowFrame"
Error in object@lambda :
no applicable method for `@` applied to an object of class "try-error"
Expected behavior
I expect the graph shown in th vignette.
Describe the bug
I am trying to run the self-contained example code for quadGate.tmix in
https://www.bioconductor.org/packages/devel/bioc/vignettes/openCyto/inst/doc/HowToAutoGating.html
I get an error that seems related to an S4 slot issue.
To Reproduce
Steps to reproduce the behavior:
Run this code snippet
The snippet results in the following
Expected behavior
I expect the graph shown in th vignette.
SessionInfo:
Additional context
Before getting the error with the vignette code I got a similar error with my own gating set.
The text was updated successfully, but these errors were encountered: