Skip to content

Commit aa49ca1

Browse files
Merge branch 'issue1278_split_recordings' into issue1205_externalEpoch
2 parents bbde9d8 + 8f7b4b2 commit aa49ca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/splitRecords.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ splitRecords = function(metadatadir, params_general = NULL) {
5858
if (length(splitTime_tmp) == 0) next
5959
split_names = split_names[within_time_range]
6060
# tidy up split_names
61-
split_names = tolower(gsub(pattern = " |[.]|-", replacement = "", x = split_names))
61+
split_names = tolower(gsub(pattern = " |[.]|-|TO", replacement = "", x = split_names))
6262
split_names = substr(split_names, start = 1, stop = 10) # consider max 8 characters
6363
split_names = make.unique(split_names, sep = "") # make names unique
6464
if (all(is.na(splitTime_tmp))) {

0 commit comments

Comments
 (0)