We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0787078 commit c542b39Copy full SHA for c542b39
R/splitRecords.R
@@ -8,6 +8,8 @@ splitRecords = function(metadatadir, params_general = NULL) {
8
9
# Create overview of all recordings ID, start time, end time, and filename
10
fns = dir(paste0(metadatadir, "/meta/basic"), full.names = TRUE)
11
+ fns = fns[grep(pattern = "_split", x = basename(fns), invert = TRUE)]
12
+ if (length(fns) == 0) return()
13
S = do.call("rbind", lapply(X = fns, FUN = getPart1BasicInfo, idloc = idloc, tz = desiredtz))
14
#------------------------------------
15
# Load recording split times file
0 commit comments