We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae1e875 commit ee39b77Copy full SHA for ee39b77
1 file changed
umi_tools/_dedup_umi.pyx
@@ -11,7 +11,7 @@ cpdef int edit_distance(a, b):
11
# we only want to define hamming distances between barcodes with the same length
12
lb = len(b)
13
if la != lb:
14
- return np.Inf
+ return np.inf
15
16
for k from 0 <= k < la:
17
if aa[k] != bb[k]:
0 commit comments