-
Notifications
You must be signed in to change notification settings - Fork 1
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
Compare md5 crhs #54
Compare md5 crhs #54
Conversation
as file is already open in click
Make description null, so FASTA header is filename
Replace file_stub with af_domain_id_str Replace click.echo with LOG.debug to tidy output Replace LOG.info with LOG.debug
Add flag for gzipped chains Add option for status_log Implement StatusLog writer Fix issue with boundaries as str Add open function to deal with regular or gzip files Add function write_status_log
Add click flag for gzipped cifs
@@ -235,6 +266,7 @@ def calculate_domain_id_post_tailchop( | |||
af_domain_id: AFDomainID, | |||
af_chain_mmcif_dir: Path, | |||
cutoff_plddt_score: int, | |||
gzipped_af_chains = bool, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, this needs to be:
gzipped_af_chains: bool
or if you want to give it a default value, it should be
gzipped_af_chains: bool = True
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
adding the default value would match the existing functionality, but allow a different option - which is generally what you want to do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(note: this is currently working because the function bool
evaluates to true)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
No description provided.