Skip to content

Commit

Permalink
Merge pull request #1137 from mcneilco/ACAS-729-clone
Browse files Browse the repository at this point in the history
Clone of ACAS-729 (Experiment Upload Bug Fix) for 2023.2.x
  • Loading branch information
brianbolt authored Dec 6, 2023
2 parents 70dfbf7 + cc34014 commit 7cc8bb4
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 7cc8bb4

Please sign in to comment.