Skip to content

Commit

Permalink
Fix source number being limited to 16-bit (65k) #729
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Aug 25, 2023
1 parent 4b52296 commit 1d62fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/createdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int createdb(int argc, const char **argv, const Command& command) {
const size_t testForNucSequence = 100;
size_t isNuclCnt = 0;
Debug::Progress progress;
std::vector<unsigned short>* sourceLookup = new std::vector<unsigned short>[shuffleSplits]();
std::vector<unsigned int>* sourceLookup = new std::vector<unsigned int>[shuffleSplits]();
for (size_t i = 0; i < shuffleSplits; ++i) {
sourceLookup[i].reserve(16384);
}
Expand Down

0 comments on commit 1d62fa0

Please sign in to comment.