Merged
Conversation
added 10 commits
January 12, 2026 15:02
…ult values to a dir if they don't exist
hlasimpk
commented
Jan 16, 2026
abcfold/output/openfold3.py
Outdated
| logger = logging.getLogger("logger") | ||
|
|
||
|
|
||
| def fix_mmcif(infile, outfile): |
Author
There was a problem hiding this comment.
I'm going to preemptively comment to say I don't think this is the best solution, but it does work. If you can think of a different way to fix it though, let me know!
hllelli2
reviewed
Jan 23, 2026
abcfold/output/openfold3.py
Outdated
|
|
||
| with open(infile) as fin, open(outfile, "w") as fout: | ||
|
|
||
| fout.write("data_structure\n") |
Collaborator
There was a problem hiding this comment.
Try writing as one big block i.e. """"
text
"""
hllelli2
reviewed
Jan 23, 2026
abcfold/output/openfold3.py
Outdated
| fout.write("_atom_site.id\n") | ||
| fout.write("_atom_site.occupancy\n") | ||
|
|
||
| for line in fin: |
Collaborator
There was a problem hiding this comment.
Make a comment explaining what this does
Collaborator
There was a problem hiding this comment.
Make a class method fro cif file handler called from_openfold which handles this logic
Collaborator
|
The check to see if singularity is found on the system sometimes returns true even if singularity is not none. |
added 2 commits
January 29, 2026 17:04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes to include OpenFold3 into ABCFold
The main changes include:
I've added tests and updated the documentation.