Skip to content

Commit

Permalink
update variant id to long from int
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin-ebi committed Oct 17, 2024
1 parent 957ab8b commit 4c6579b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ public void initializeReader() {
}

private void loadNextBatchAndQuery() {
List<Integer> variantIds = new ArrayList<>();
List<Long> variantIds = new ArrayList<>();
String line;

try {
while (variantIds.size() < chunkSize && (line = reader.readLine()) != null) {
variantIds.add(Integer.parseInt(line.trim()));
variantIds.add(Long.parseLong(line.trim()));
}
if (variantIds.isEmpty()) {
endOfFile = true;
Expand Down

0 comments on commit 4c6579b

Please sign in to comment.