Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements for refinement finding #198

Merged
merged 4 commits into from
Jan 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove unused index
  • Loading branch information
dianakolusheva committed Dec 9, 2021
commit cd15ea42df03edf42beae2cd67e00b1c295ba004
4 changes: 1 addition & 3 deletions indra_db/preassembly/preassemble_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,9 +551,7 @@ def _supplement_support(self, db, new_hashes, start_time, continuing=False):

# We first get all the new statements in batches
all_outer_stmts = []
for outer_idx, (out_s, out_e) in enumerate(idx_batches[start_idx:]):
outer_idx += 1 # log starting at 1
outer_idx += start_idx
for (out_s, out_e) in idx_batches[start_idx:]:
# Create the statements from the JSONs
npa_json_q = db.filter_query(
db.PAStatements.json,
Expand Down