Skip to content

Commit 22b9bca

Browse files
author
Hamid Gasmi
committed
#185 a typo is fixed
1 parent 6afeeff commit 22b9bca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

09-problems/graph-algorithms-in-genome-sequencing/kmer_overlap_graph.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_node_id(self, pattern):
5252

5353
return node_id, is_new_node
5454

55-
def print_adjacency_list(self):
55+
def str_adjacency_list(self):
5656

5757
result_list = []
5858
for node in range(len(self.nodes)):
@@ -75,4 +75,4 @@ def print_adjacency_list(self):
7575

7676
overlap_graph = Overlap_Graph(patterns)
7777

78-
print(overlap_graph.print_adjacency_list())
78+
print(overlap_graph.str_adjacency_list())

0 commit comments

Comments
 (0)