Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin-ebi committed Nov 15, 2024
1 parent e7c8f0a commit b7972ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eva_sub_cli/validators/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def validate(self):
self._validate()
self.clean_up_output_dir()
self._collect_validation_workflow_results()
self._asses_validation_results()
self._assess_validation_results()
self._save_validation_results()

def report(self):
Expand Down Expand Up @@ -176,7 +176,7 @@ def _collect_validation_workflow_results(self):
self._load_fasta_check_results()
self._collect_metadata_results()

def _asses_validation_results(self):
def _assess_validation_results(self):
"""
Assess if the validation results are meeting expectations and marks them as "PASS: true" or "PASS: false"
It assumes all validation have been parsed already.
Expand Down Expand Up @@ -211,7 +211,7 @@ def _save_validation_results(self):
with open(self.validation_result_file, 'w') as val_res_file:
yaml.safe_dump(self.results, val_res_file)

self.info(f"saved validation result in {self.validation_result_file}")
self.debug(f"saved validation result in {self.validation_result_file}")

@lru_cache
def _vcf_check_log(self, vcf_name):
Expand Down

0 comments on commit b7972ef

Please sign in to comment.