-
Notifications
You must be signed in to change notification settings - Fork 27
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
feat: add param to VCFAnnotator to optionally require validation checks #345
Conversation
* Adds `require_validation` parameter. If `True`, validation checks must pass in order to return a VRS object. If validation checks fail, a ValueError will be raised. If `False`, then the VRS object will be returned even if validation checks fail.
@quinnwai I don't have permissions to change your permissions so you can be added as a reviewer. |
Tested with a small vcf that...
Added an open question on the CLI code |
@ga4gh/vrs-python-maintainers Is someone able to review this so I can make a pypi release for @quinnwai? |
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.
codewise this looks okay to me.
close #343
require_validation
parameter. IfTrue
, validation checks must pass in order to return a VRS object. If validation checks fail, a ValueError will be raised. IfFalse
, then the VRS object will be returned even if validation checks fail.