Skip to content

Commit 3a50d45

Browse files
author
Mikkel Roald-Arbøl
committed
Added read_bonsai and light testing
1 parent 3f721af commit 3a50d45

11 files changed

+1143
-8
lines changed

DESCRIPTION

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Imports:
2424
lifecycle,
2525
rlang,
2626
stringi,
27+
tidyselect,
2728
vroom,
2829
zoo
2930
Suggests:

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export(clean_kinematics)
77
export(ensure_file_has_expected_headers)
88
export(ensure_file_has_headers)
99
export(read_animalta)
10+
export(read_bonsai)
1011
export(read_deeplabcut)
1112
export(read_idtracker)
1213
export(read_movement)
@@ -22,6 +23,7 @@ export(validate_time)
2223
export(validate_trackball)
2324
import(circular)
2425
import(dplyr)
26+
import(tidyselect)
2527
importFrom(circular,circular)
2628
importFrom(circular,is.circular)
2729
importFrom(cli,cli_abort)

R/read_bonsai.R

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#' Read centroid tracking data from Bonsai
2+
#'
3+
#' @description
4+
#' `r lifecycle::badge('experimental')`
5+
#'
6+
#' @param path Path to a Bonsai data file
7+
#' @import dplyr
8+
#' @import tidyselect
9+
#' @importFrom vroom vroom
10+
#'
11+
#' @return a movement dataframe
12+
#' @export
13+
read_bonsai <- function(path) {
14+
# There can be tracking from multiple ROIs at the same time
15+
# We need to check everything matches expectations
16+
# We should be able to use only a single timestamp (should be the same across all ROIs)
17+
validate_files(path, expected_suffix = "csv")
18+
data <- vroom::vroom(
19+
path,
20+
delim = ",",
21+
show_col_types = FALSE
22+
) |>
23+
suppressMessages() |>
24+
dplyr::select(tidyselect::contains(c("Timestamp", "Centroid"))) |>
25+
dplyr::rename(time = tidyselect::contains("Timestamp"),
26+
x = tidyselect::contains("X"),
27+
y = tidyselect::contains("Y")) |>
28+
dplyr::mutate(keypoint = factor("centroid")) |>
29+
dplyr::relocate("keypoint", .after = .data$time)
30+
31+
attributes(data)$spec <- NULL
32+
attributes(data)$problems <- NULL
33+
34+
return(data)
35+
}

R/read_deeplabcut.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
#' @description
44
#' `r lifecycle::badge('experimental')`
55
#'
6-
#' @param data A DeepLabCut data frame
6+
#' @param path Path to a DeepLabCut data file
77
#'
88
#' @return a movement dataframe
99
#' @export
10-
read_deeplabcut <- function(data) {
10+
read_deeplabcut <- function(path) {
1111
cli::cli_abort("`read_deeplabcut` has not yet been implemented. Coming soon!")
1212
}

R/read_sleap.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
#' @description
44
#' `r lifecycle::badge('experimental')`
55
#'
6-
#' @param data A SLEAP data frame
6+
#' @param path A SLEAP data frame
77
#'
88
#' @return a movement dataframe
99
#' @export
10-
read_sleap <- function(data) {
10+
read_sleap <- function(path) {
1111
cli::cli_abort("`read_sleap` has not yet been implemented. Coming soon!")
1212
}

man/read_bonsai.Rd

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/read_deeplabcut.Rd

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/read_sleap.Rd

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

renv.lock

+49
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,31 @@
5454
],
5555
"Hash": "9fe98599ca456d6552421db0d6772d8f"
5656
},
57+
"boot": {
58+
"Package": "boot",
59+
"Version": "1.3-30",
60+
"Source": "Repository",
61+
"Repository": "CRAN",
62+
"Requirements": [
63+
"R",
64+
"graphics",
65+
"stats"
66+
],
67+
"Hash": "96abeed416a286d4a0f52e550b612343"
68+
},
69+
"circular": {
70+
"Package": "circular",
71+
"Version": "0.5-1",
72+
"Source": "Repository",
73+
"Repository": "RSPM",
74+
"Requirements": [
75+
"R",
76+
"boot",
77+
"mvtnorm",
78+
"stats"
79+
],
80+
"Hash": "3cf8da958fff9dcb209dd1e549a60a05"
81+
},
5782
"cli": {
5883
"Package": "cli",
5984
"Version": "3.6.3",
@@ -207,6 +232,17 @@
207232
],
208233
"Hash": "7ce2733a9826b3aeb1775d56fd305472"
209234
},
235+
"mvtnorm": {
236+
"Package": "mvtnorm",
237+
"Version": "1.3-1",
238+
"Source": "Repository",
239+
"Repository": "RSPM",
240+
"Requirements": [
241+
"R",
242+
"stats"
243+
],
244+
"Hash": "77c61d51ce0f36e3c1a76e6b295aab31"
245+
},
210246
"pillar": {
211247
"Package": "pillar",
212248
"Version": "1.9.0",
@@ -279,6 +315,19 @@
279315
],
280316
"Hash": "3eec01f8b1dee337674b2e34ab1f9bc1"
281317
},
318+
"stringi": {
319+
"Package": "stringi",
320+
"Version": "1.8.4",
321+
"Source": "Repository",
322+
"Repository": "RSPM",
323+
"Requirements": [
324+
"R",
325+
"stats",
326+
"tools",
327+
"utils"
328+
],
329+
"Hash": "39e1144fd75428983dc3f63aa53dfa91"
330+
},
282331
"tibble": {
283332
"Package": "tibble",
284333
"Version": "3.2.1",

0 commit comments

Comments
 (0)