I’m in the middle of running a PLP study and have encountered this error:
Error in value[3L] : Issue with json file…
traceback()
6: stop(“Issue with json file…”) at Main.R#168
5: value[3L]
4: tryCatchOne(expr, names, parentenv, handlers[[1L]])
3: tryCatchList(expr, classes, parentenv, handlers)
2: tryCatch({
Hydra::loadSpecifications(file = predictionAnalysisListFile)
}, error = function(cond) {
stop(“Issue with json file…”)
}) at Main.R#166
1: execute(connectionDetails = connectionDetails, cdmDatabaseSchema = cdmDatabaseSchema,
cdmDatabaseName = cdmDatabaseName, cohortDatabaseSchema = cohortDatabaseSchema,
cohortTable = cohortTable, outputFolder = outputFolder, createProtocol = F,
createCohorts = F, runAnalyses = F, createResultsDoc = F,
packageResults = F, createValidationPackage = T, minCellCount = 5,
createShiny = T, createJournalDocument = T, analysisIdDocument = 1)
If I turn off the createValidationPackage, I still get the same issue just in a new place in the Main file:
Error in value[3L] : Issue with json file…
traceback()
6: stop(“Issue with json file…”) at Main.R#195
5: value[3L]
4: tryCatchOne(expr, names, parentenv, handlers[[1L]])
3: tryCatchList(expr, classes, parentenv, handlers)
2: tryCatch({
Hydra::loadSpecifications(file = predictionAnalysisListFile)
}, error = function(cond) {
stop(“Issue with json file…”)
}) at Main.R#193
1: execute(connectionDetails = connectionDetails, cdmDatabaseSchema = cdmDatabaseSchema,
cdmDatabaseName = cdmDatabaseName, cohortDatabaseSchema = cohortDatabaseSchema,
cohortTable = cohortTable, outputFolder = outputFolder, createProtocol = F,
createCohorts = F, runAnalyses = F, createResultsDoc = F,
packageResults = F, createValidationPackage = F, minCellCount = 5,
createShiny = T, createJournalDocument = T, analysisIdDocument = 1)
Thoughts? @jennareps @schuemie @SCYou