Skip to content

Commit

Permalink
Update function call
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Feb 29, 2024
1 parent 025a818 commit f5ec728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PopPUNK/refine.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def expand_cugraph_network(G, G_extra_df):
if 'src' in G_original_df.columns:
G_original_df.columns = ['source','destination']
G_df = cudf.concat([G_original_df,G_extra_df])
G = add_self_loop(G_df, G_vertex_count, weights = False, renumber = False)
G = generate_cugraph(G_df, G_vertex_count, weights = False, renumber = False)
return G

def growNetwork(sample_names, i_vec, j_vec, idx_vec, s_range, score_idx = 0,
Expand Down

0 comments on commit f5ec728

Please sign in to comment.