Skip to content

Commit

Permalink
fix matches tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian Goina committed May 10, 2024
1 parent 3898749 commit 83a76a6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import com.mongodb.ConnectionString;
import com.mongodb.MongoClientSettings;
import com.mongodb.MongoCredential;
import com.mongodb.ReadConcern;
import com.mongodb.ReadPreference;
import com.mongodb.ServerAddress;
import com.mongodb.WriteConcern;
Expand All @@ -24,7 +23,6 @@
import org.bson.codecs.configuration.CodecRegistries;
import org.bson.codecs.configuration.CodecRegistry;
import org.janelia.colormipsearch.model.AbstractBaseEntity;
import org.janelia.colormipsearch.model.AbstractMatchEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private void runExportForTargetIds(int jobId, List<String> targetMipIds) {
/* targetExcludedTags */dataSourceParam.getExcludedTags(),
/* targetAnnotations */dataSourceParam.getAnnotations(),
/* targetExcludedAnnotations */dataSourceParam.getExcludedAnnotations(),
/* matchTags */dataSourceParam.getExcludedTags(),
/* matchTags */null,
/* matchExcludedTags */matchesExcludedTags,
/* matchesScoresFilter */scoresFilter,
/* no sorting yet because it uses too much memory on the server */null);
Expand Down

0 comments on commit 83a76a6

Please sign in to comment.