Open
Conversation
added 17 commits
February 4, 2026 17:36
…ar to protenix, so not necessary
…flag, and remove abc_config script as this supercedes it
… using mmseqs2, also hopefully have added a fix to the issue in ipsae scoring
… added alphapulldown option to ipsae for shah
…ound ipsae and edited how it's displayed on the output page
added 4 commits
February 27, 2026 15:31
…p for chai and changed use_paired option from OF3 as it was breaking things
hllelli2
reviewed
Mar 6, 2026
| msa = None | ||
| for sequence in json_dict['sequences']: | ||
| protein = sequence.get("protein") | ||
| if protein is not None: |
Collaborator
There was a problem hiding this comment.
I like not nesting too much for readability. Instead of if protein is not None: You can instead do
if protein is None:
continue
Rest of code
This reduces nesting.
Collaborator
There was a problem hiding this comment.
I didn't realise this was
markdown
- --rest of code--
hllelli2
reviewed
Mar 6, 2026
| return yaml_string | ||
|
|
||
| def add_key_and_value(self, key: str, value: str): | ||
| def add_key_and_value(self, key: str, value): |
Collaborator
There was a problem hiding this comment.
Why was the typing removed from here?
Author
There was a problem hiding this comment.
the value isn't always a string, so it was breaking for bonded pairs iirc
Could potentially replace with Union[str, bool]
hllelli2
reviewed
Mar 6, 2026
| except ValueError: | ||
| logger.error("ValueError when calculating ipSAE score, bypassing ipSAE") | ||
| pass | ||
| ipsae = Ipsae(model, pae_obj) |
hllelli2
reviewed
Mar 6, 2026
| for seed in self.seeds | ||
| } | ||
|
|
||
| def update_chain_labels(self, cif_file) -> CifFile: |
Collaborator
|
Looking good. I think we should add mypy with type-checking to ensure we have all our type-hints in order. Also, what's your local test coverage getting. we have 67% in actions but we don't run the programs here. |
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.
Updated a few aspects of ABCFold, most notably: