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
Dear Koonimaru,
It is a very nice tool I was looking for, there are three lines of code that were giving an error after I installed it.
line 335, and so on. (see below)
ax.spines.right.set_visible(False)
ax.spines.top.set_visible(False)
ax.spines.left.set_visible(False)
ax.spines.bottom.set_visible(False)
leading to collections.OrderedDict error.
I commented them and reset them to > ax.set_frame_on(False), which sorted the issue for me. In addition, the 3 examples also give warning due to symmetric distance matrix.
I reset them to
Compute linkage using the condensed distance matrix
Y = hierarchy.linkage(distance_mat, method='complete')
for my example to compute closest sequences using a 1-D condensed distance matrix. I hope you can fix them.
Thanks a lot for the code.
Bhawna
The text was updated successfully, but these errors were encountered:
Thank you for your comments. I will fix it. I thought that this module was better integrated into omiplot. But, because some people still keep using this module, I get motivated to maintain it.
Dear Koonimaru,
It is a very nice tool I was looking for, there are three lines of code that were giving an error after I installed it.
line 335, and so on. (see below)
ax.spines.right.set_visible(False)
ax.spines.top.set_visible(False)
ax.spines.left.set_visible(False)
ax.spines.bottom.set_visible(False)
leading to collections.OrderedDict error.
I commented them and reset them to > ax.set_frame_on(False), which sorted the issue for me. In addition, the 3 examples also give warning due to symmetric distance matrix.
I reset them to
Compute linkage using the condensed distance matrix
Y = hierarchy.linkage(distance_mat, method='complete')
for my example to compute closest sequences using a 1-D condensed distance matrix. I hope you can fix them.
Thanks a lot for the code.
Bhawna
The text was updated successfully, but these errors were encountered: