Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit af16a5a

Browse files
committed
Use .data$
1 parent 168bf12 commit af16a5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/dev.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@ downsample_metadata <- function(output = "sample_meta.parquet"){
211211
.data$tissue == "kidney blood vessel",
212212
# Used by tests
213213
.data$file_id_db == "3214d8f8986c1e33a85be5322f2db4a9",
214-
cell_ == "868417_1"
214+
.data$cell_ == "868417_1"
215215
) |>
216216
purrr::map(function(filter){
217217
all_ids <- metadata |>
218218
dplyr::filter(!!filter) |>
219-
dplyr::group_by(file_id_db) |>
219+
dplyr::group_by(.data$file_id_db) |>
220220
# Remove datasets that only have 1 matching cell, which will
221221
# break downstream
222222
dplyr::filter(dplyr::n() > 1) |>

0 commit comments

Comments
 (0)