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 using ggsave()tiff device saving Seurat plots, Rstudio crashed: R Session Aborted: R encountered a fatal error. The session was terminated.
Yesterday it was working fine. This only happens today.
This happens only on my mac (Catalina 10.15.7). Testing on ubuntu (18.04 LTS) everything works fine.
Searched for recently raised issues and found a similar one #4554 which is resolved by Rstudio upgrade. I tried upgrading Rstudio to 1.v1.4.1717-3 Preview but the issue persisted.
library(Seurat)
library(ggplot2)
DotPlot(pbmc_small,
features = "MS4A1")
ggsave(filename = "test.png", device = "png") # Works fine
ggsave(filename = "test.tiff", device = "tiff") # Crash
# All crashed when invoking ggsave("test.tiff")
DotPlot(pbmc_small,
features = "MS4A1")
RidgePlot(pbmc_small,
features = "MS4A1")
VlnPlot(pbmc_small,
features = "MS4A1")
FeaturePlot(pbmc_small,
features = "MS4A1")
DimPlot(pbmc_small,
features = "MS4A1")
FeatureScatter(pbmc_small,
feature1 = "MS4A1", feature2 = "CD79B")
When using
ggsave()
tiff
device saving Seurat plots, Rstudio crashed:R Session Aborted: R encountered a fatal error. The session was terminated.
Yesterday it was working fine. This only happens today.
This happens only on my mac (Catalina 10.15.7). Testing on ubuntu (18.04 LTS) everything works fine.
Searched for recently raised issues and found a similar one #4554 which is resolved by Rstudio upgrade. I tried upgrading Rstudio to
1.v1.4.1717-3 Preview
but the issue persisted.Plot functions I've tested and crashed include:
DotPlot()
,RidgePlot()
,VlnPlot()
,FeaturePlot()
,DimPlot()
,FeatureScatter()
DoHeatmap()
is unaffectedThis does not look like a
ggplot
issue as plots generated by ggplot are unaffected. Only Seurat generated plots are affected.The text was updated successfully, but these errors were encountered: