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
Encountered an error while running SCTransform on a Xenium object created with LoadXenium. The error indicates that the log_umi cell attribute contains NA, NaN, or infinite values, which is preventing SCTransform from completing successfully.
Error:
Error in make_cell_attr(umi, cell_attr, latent_var, batch_var, latent_var_nonreg, :
cell attribute "log_umi" contains NA, NaN, or infinite value
Code:
> library(Seurat)
> library(future)
> plan("multisession", workers = 10)
> library(ggplot2)
> library(tidyverse)
> library(arrow)
> library(dplyr)
> library(devtools)
> data.dir <- "/path/to/xenium/data/outs"
> xenium.obj <- LoadXenium(data.dir, fov = "fov", assay = "Xenium")
10X data contains more than one type and is being returned as a list containing matrices of each type.
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')
> xenium.obj <- SCTransform(xenium.obj, assay = "Xenium", clip.range = c(-10, 10))
Calculating cell attributes from input UMI matrix: log_umi
Error in make_cell_attr(umi, cell_attr, latent_var, batch_var, latent_var_nonreg, :
cell attribute "log_umi" contains NA, NaN, or infinite value
Please advise if there are specific pre-processing steps required for Xenium data or any known solutions to handle NA, NaN, or infinite values in log_umi.
The text was updated successfully, but these errors were encountered:
Encountered an error while running
SCTransform
on a Xenium object created withLoadXenium
. The error indicates that thelog_umi
cell attribute contains NA, NaN, or infinite values, which is preventingSCTransform
from completing successfully.Error:
Code:
Please advise if there are specific pre-processing steps required for Xenium data or any known solutions to handle NA, NaN, or infinite values in
log_umi
.The text was updated successfully, but these errors were encountered: