Replies: 1 comment
-
|
First, run Then import pickle
with open("caretta_results/result_class.pkl", "rb") as f:
caretta_class = pickle.load(f)
protein_ids = [s.name for s in caretta_class.structures]
pairwise_rmsd_matrix, pairwise_coverage, pairwise_tm = caretta_class.make_rmsd_coverage_tm_matrix()Each matrix is a numpy array of size (n_proteins, n_proteins) and the order is defined by Hope this is clear! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, may I have an example for the usage of
make_rmsd_coverage_tm_matrix? Thank you :)Originally posted by @lingnus1 in #14 (comment)
Beta Was this translation helpful? Give feedback.
All reactions