Skip to content

Commit

Permalink
fixed typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbates committed Jul 12, 2024
1 parent 7946ea3 commit d6f20f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit d6f20f6

Please sign in to comment.