We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da61475 commit 641663dCopy full SHA for 641663d
SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/FastqcRunner.java
@@ -370,7 +370,7 @@ private List<String> getBaseParams() throws FileNotFoundException
370
if (!commonsMath.exists())
371
{
372
File[] files = coreLibDir.listFiles();
373
- String contents = files == null ? "null" : Arrays.stream(files).map(File::getName).filter(x -> x.contains("math")).collect(Collectors.joining(","));
+ String contents = files == null ? "null" : Arrays.stream(files).map(File::getName).filter(x -> x.contains("jar")).collect(Collectors.joining(","));
374
throw new RuntimeException("Not found: " + commonsMath.getPath() + ", files present: " + contents);
375
}
376
0 commit comments