Skip to content

Commit

Permalink
add require_validation as param
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma committed Feb 13, 2024
1 parent 15901db commit 48ea5f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ga4gh/vrs/extras/vcf_annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ def annotate_click( # pylint: disable=too-many-arguments
msg = f"Annotating {vcf_in} with the VCF Annotator..."
_logger.info(msg)
click.echo(msg)
annotator.annotate(vcf_in, vcf_out, vrs_pickle_out, vrs_attributes, assembly, (not skip_ref))
annotator.annotate(
vcf_in, vcf_out=vcf_out, vrs_pickle_out=vrs_pickle_out,
vrs_attributes=vrs_attributes, assembly=assembly,
compute_for_ref=(not skip_ref), require_validation=require_validation
)
end = timer()
msg = f"VCF Annotator finished in {(end - start):.5f} seconds"
_logger.info(msg)
Expand Down

0 comments on commit 48ea5f3

Please sign in to comment.