Skip to content

Commit

Permalink
Merge pull request #1139 from mcneilco/release/2023.2.x
Browse files Browse the repository at this point in the history
⬆️ Upmerge release/2023.2.x to release/2023.3.x
  • Loading branch information
brianbolt authored Dec 6, 2023
2 parents 1a6ce19 + 7cc8bb4 commit 2f7c23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/GenericDataParser/src/server/generic_data_parser.R
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ saveEndpointCodeTables <- function(codes, codeKind) {
}

# we don't want to work with other codeKinds (this is set up for endpoint manager only right now... )
validCodeKinds = c("column name", "column units", "concentration units", "time units")
validCodeKinds = c("column name", "column units", "column conc units", "time units")

#Before we save the incoming code, we need to check if the code/codeKind pair already exists...
#get relevant ddict data
Expand Down Expand Up @@ -3664,7 +3664,7 @@ runMain <- function(pathToGenericDataFormatExcelFile, reportFilePath=NULL,
# also save the new endpoints of the protocol
saveEndpointCodeTables(selColumnOrderInfo$Units, "column units")
saveEndpointCodeTables(selColumnOrderInfo$valueKind, "column name")
saveEndpointCodeTables(selColumnOrderInfo$concUnits, "concentration units")
saveEndpointCodeTables(selColumnOrderInfo$concUnits, "column conc units")
saveEndpointCodeTables(selColumnOrderInfo$timeUnit, "time units")

if (newProtocol) {
Expand Down

0 comments on commit 2f7c23b

Please sign in to comment.