Skip to content

Commit 0b2a759

Browse files
committed
Bugfix to OrphanFilePipelineJob
1 parent ffdd306 commit 0b2a759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/OrphanFilePipelineJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ private void getOrphanFilesForDirectory(Set<Integer> knownExpDatas, Map<URI, Set
544544
{
545545
if (f.getName().endsWith(".gdb"))
546546
{
547-
if (!knownExpDatas.contains(new File(f, "__tiledb_workspace.tdb").toURI()))
547+
if (!dataMap.containsKey(new File(f, "__tiledb_workspace.tdb").toURI()))
548548
{
549549
orphanSequenceFiles.add(f);
550550
}

0 commit comments

Comments
 (0)