Skip to content

Commit

Permalink
Don't match integer64 cell IDs #60
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdamoses committed Jan 25, 2025
1 parent d21437d commit 9772ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read.R
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ readVisiumHD <- function(data_dir, bin_size = c(2L, 8L, 16L),
" cells with (nested) polygon lists", "\n",
">>> ..applying filtering") }
# add sequence of numbers as temporary column
polys$ID_row <- seq_len(length.out = nrow(polys))
polys$ID_row <- as.character(seq_len(length.out = nrow(polys)))
polys.ID_row <- polys$ID_row
# remove empty elements
polys <- polys[!st_is_empty(polys), ]
Expand Down

0 comments on commit 9772ae5

Please sign in to comment.