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 375533a commit 200c08bCopy full SHA for 200c08b
EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/resolver/DataSetResolverTask.java
@@ -49,8 +49,10 @@ public void run(TaskMonitor tm) {
49
if(Files.isDirectory(path)) {
50
for(File subdirectory : path.toFile().listFiles(File::isDirectory)) {
51
Path subDirPath = subdirectory.toPath();
52
- if(matcher == null || matcher.matches(subDirPath.getFileName())) {
53
- paths.add(subDirPath);
+ if(!subDirPath.endsWith("edb")) {
+ if(matcher == null || matcher.matches(subDirPath.getFileName())) {
54
+ paths.add(subDirPath);
55
+ }
56
}
57
58
0 commit comments