On line 53 of kmerGraphCalling.py, you use the deprecated function connected_component_subgraphs. I believe that the current way to get this information is now G.subgraph(c) for c in nx.connected_components(G). Would it be possible to update this in your code? Thank you.
Hello,
On line 53 of kmerGraphCalling.py, you use the deprecated function connected_component_subgraphs. I believe that the current way to get this information is now G.subgraph(c) for c in nx.connected_components(G). Would it be possible to update this in your code? Thank you.