From d6f20f6deabb4fe4ba98c1bd61933c26abcd5516 Mon Sep 17 00:00:00 2001 From: alexanderbates Date: Fri, 12 Jul 2024 14:06:41 -0400 Subject: [PATCH] fixed typos in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d975a1..3c130a9 100644 --- a/README.md +++ b/README.md @@ -157,8 +157,8 @@ We can get a table of nucleus ids from CAVE and find ours. The `root_id` column in these CAVE tables automatically update. ``` -banc.nulcei <- banc_nuclei() -banc.nuclei.an1 <- subset(banc.nulcei, banc.nulcei$pt_root_id %in% an1.ids) +banc.nuclei <- banc_nuclei() +banc.nuclei.an1 <- banc.nuclei[as.character(banc.nuclei$pt_root_id) %in% an1.ids,] banc.nuclei.an1.ids <- as.character(banc.nuclei.an1$id) banc.nuclei.an1 ```