Skip to content

Commit

Permalink
fix output dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
apriltuesday committed Feb 16, 2024
1 parent a1f20e0 commit 238e2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eva_sub_cli/validators/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Validator:

def __init__(self, mapping_file, output_dir, metadata_json=None, metadata_xlsx=None,
submission_config: WritableConfig = None):
self.output_dir = output_dir
self.output_dir = os.path.join(output_dir, VALIDATION_OUTPUT_DIR)
self.mapping_file = mapping_file
vcf_files, fasta_files = self._find_vcf_and_fasta_files()
self.vcf_files = vcf_files
Expand Down

0 comments on commit 238e2bf

Please sign in to comment.