-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request: Access to column LDDT values #4
Comments
This is on the to-do list at the moment. The easiest way to extract the per-column scores would be using grep on the html file, e.g.:
Unfortunately the current implementation of msa2lddt scales pretty poorly since it looks at every possible pair of sequences within the MSA. Improving this (+ exporting the underlying data) is also on the todo list for now. |
Hi, amazing job on this tool. For anyone who needs this, here is a 1-liner pipe for getting this data. Requirements: running jq -r '.scores[]' output.json | awk 'BEGIN {print "Residue_position\tlDDT_score"} {print NR "\t" $0}' > lDDT_per_residue.tsv |
In my opinion for example, make MSA on profiles from each step , it should not be difficult if corresponding results will be preserved : it can be "debug" mode. |
The .html output of msa2lddtreport includes column values of LDDT for a given alignment, but from the file or the .json you can download I haven't found a good way to pull them for analysis. Can this be an optional output file, or be calculable from another tool?
One note is that for our larger networks I am able to calculate the alignments with the recent improvements but msa2lddt segfaults and fails, possibly due to a lack of RAM (I am working with just 32GB). If there were a way to calculate it directly rather than going through the .html report function that would be super helpful!
The text was updated successfully, but these errors were encountered: