Skip to content

Commit 641663d

Browse files
committed
Incremental improvements to MCC ETL
1 parent da61475 commit 641663d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/FastqcRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ private List<String> getBaseParams() throws FileNotFoundException
370370
if (!commonsMath.exists())
371371
{
372372
File[] files = coreLibDir.listFiles();
373-
String contents = files == null ? "null" : Arrays.stream(files).map(File::getName).filter(x -> x.contains("math")).collect(Collectors.joining(","));
373+
String contents = files == null ? "null" : Arrays.stream(files).map(File::getName).filter(x -> x.contains("jar")).collect(Collectors.joining(","));
374374
throw new RuntimeException("Not found: " + commonsMath.getPath() + ", files present: " + contents);
375375
}
376376

0 commit comments

Comments
 (0)