Skip to content

Commit

Permalink
Decrease progress message frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasblum committed Nov 26, 2024
1 parent 1005f1b commit ce8deaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ void buildDatabase(String url, String password, int fetchSize, File outputDirect
List<String> partitions = getPartitions(connection);

int proteinCount = 0;
int milestone = 1_000_000;
int step = 1_000_000;
int milestone = 10_000_000;
int step = 10_000_000;
int partitionDone = 0;
Map<String, KVSequenceEntry> matches = new HashMap<>();
for (int i = 0; i < partitions.size(); i++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ void buildDatabase(String url, String password, int fetchSize, File outputDirect
List<String> partitions = getPartitions(connection);

int proteinCount = 0;
int milestone = 1_000_000;
int step = 1_000_000;
int milestone = 10_000_000;
int step = 10_000_000;
int partitionDone = 0;
Map<String, KVSequenceEntry> entries = new HashMap<>();

Expand Down

0 comments on commit ce8deaf

Please sign in to comment.