We are running Data Quality Dashboard from R using the instructions here:
For this part of the process:
ParallelLogger::launchLogViewer(logFileName = file.path(outputFolder, cdmSourceName,
sprintf("log_DqDashboard_%s.txt", cdmSourceName)))
We get an error the the file cannot be found. It looks like the file is put in outputFolder/ not in outputFolder/cdmSourceName. Changing the script to the following fixed this:
ParallelLogger::launchLogViewer(logFileName = file.path(outputFolder,
sprintf("log_DqDashboard_%s.txt", cdmSourceName)))
(also, thinking maybe there should be a tag for DQD?)