We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bbde9d8 + 8f7b4b2 commit aa49ca1Copy full SHA for aa49ca1
R/splitRecords.R
@@ -58,7 +58,7 @@ splitRecords = function(metadatadir, params_general = NULL) {
58
if (length(splitTime_tmp) == 0) next
59
split_names = split_names[within_time_range]
60
# tidy up split_names
61
- split_names = tolower(gsub(pattern = " |[.]|-", replacement = "", x = split_names))
+ split_names = tolower(gsub(pattern = " |[.]|-|TO", replacement = "", x = split_names))
62
split_names = substr(split_names, start = 1, stop = 10) # consider max 8 characters
63
split_names = make.unique(split_names, sep = "") # make names unique
64
if (all(is.na(splitTime_tmp))) {
0 commit comments