We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7461d68 commit 31de445Copy full SHA for 31de445
SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java
@@ -245,6 +245,10 @@ else if (run.getFilePathRootPath() == null)
245
{
246
log.error("Run fileroot is null for runId: " + m.getRunId());
247
}
248
+ else if (!run.getFilePathRootPath().toFile().exists())
249
+ {
250
+ log.error("Run fileroot does not exist: " + m.getRunId() + " / " + run.getFilePathRoot());
251
+ }
252
else
253
254
try (Stream<Path> stream = Files.walk(run.getFilePathRootPath()))
0 commit comments