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
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