Skip to content

Commit 5f686c7

Browse files
committed
Fix networkx deprecation warnings
1 parent 02451d4 commit 5f686c7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/cortexpy/graph/parser/random_access.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This module contains classes for inspecting Cortex graphs with random access to their kmers.
55
"""
66
from bisect import bisect_left
7-
from collections import Sequence, Mapping
7+
from collections.abc import Sequence, Mapping
88
from functools import lru_cache
99
from io import SEEK_END
1010

src/cortexpy/graph/parser/random_access_collection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from collections import Mapping
1+
from collections.abc import Mapping
22
from itertools import chain
33

44
import attr

tests/test_unit/test_graph/test_interactor/test_prune_tips.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class TestMultiDiGraph(object):
99
def test_prunes_three_tips_of_length_1(self):
1010
# given
1111
graph = nx.MultiDiGraph()
12-
graph.add_path([0, 1, 2])
13-
graph.add_path([0, 1, 3])
12+
nx.add_path(graph, [0, 1, 2])
13+
nx.add_path(graph, [0, 1, 3])
1414

1515
# when
1616
graph = interactor.Interactor(graph).prune_tips_less_than(2).graph
@@ -22,8 +22,8 @@ def test_prunes_three_tips_of_length_1(self):
2222
def test_prunes_one_tip_of_length_1(self):
2323
# given
2424
graph = nx.MultiDiGraph()
25-
graph.add_path([0, 1, 2, 3])
26-
graph.add_path([0, 1, 4, 5])
25+
nx.add_path(graph, [0, 1, 2, 3])
26+
nx.add_path(graph, [0, 1, 4, 5])
2727

2828
# when
2929
graph = interactor.Interactor(graph).prune_tips_less_than(2).graph

0 commit comments

Comments
 (0)