Commit 6970d7ce authored by Bharath Ramsundar's avatar Bharath Ramsundar
Browse files

changes

parent 461b412e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ def merge_overlapping_boxes(boxes, threshold=.8):
  list[CoordinateBox] of merged boxes. This list will have length less
  than or equal to the length of `boxes`.
  """
  outputs = []
  outputs = boxes.copy()
  for box in boxes:
    for other in boxes:
      if box == other:
+0 −4
Original line number Diff line number Diff line
@@ -2,10 +2,6 @@
PDBBind binding pocket dataset loader.
"""

from __future__ import print_function
from __future__ import division
from __future__ import unicode_literals

import os
import numpy as np
import pandas as pd