You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the script, scgenome.snvphylo.snv_hierarchical_clustering_figure,
the clip_upper func is deprecated and throw error.
Current script:
snv_matrix['alt_counts'] = snv_matrix['alt_counts'].clip_upper(10)
Suggest change to:
snv_matrix['alt_counts'] = snv_matrix['alt_counts'].clip(upper=10)
Hi Andrew,
In the script, scgenome.snvphylo.snv_hierarchical_clustering_figure,
the clip_upper func is deprecated and throw error.
Current script:
snv_matrix['alt_counts'] = snv_matrix['alt_counts'].clip_upper(10)
Suggest change to:
snv_matrix['alt_counts'] = snv_matrix['alt_counts'].clip(upper=10)
scgenome.snvphylo.snv_hierarchical_clustering_figure(
snv_count_data, clusters,
)
Best,
Hoa Tran
The text was updated successfully, but these errors were encountered: