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
My understanding is that the int() function in python will round down fractions to the nearest integer. So although the params.cluster_sel_epsilon may be set to 0.5, int(0.5) will become 0.
This may be misleading if anyone attempt to configure the params.cluster_sel_epsilon option as it will always be rounded down.
The text was updated successfully, but these errors were encountered:
Hi, I've been reading through the implementation of NanoCLUST to get some ideas for clustering my own nanopore data.
I have found a potential bug with the
cluster_sel_epsilon
option at the hdbscan clustering step.The line here:
NanoCLUST/templates/umap_hdbscan.py
Line 23 in 9364ddc
My understanding is that the
int()
function in python will round down fractions to the nearest integer. So although theparams.cluster_sel_epsilon
may be set to0.5
,int(0.5)
will become0
.This may be misleading if anyone attempt to configure the
params.cluster_sel_epsilon
option as it will always be rounded down.The text was updated successfully, but these errors were encountered: