Skip to content

Commit

Permalink
Allow contig name to be invalid in the release QC
Browse files Browse the repository at this point in the history
  • Loading branch information
tcezard committed Jun 5, 2024
1 parent 8cd87c7 commit fc2dbc5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def analyze_vcf_validation_files(vcf_validation_report_files):
"do not share the first nucleotide",
"the input file is not valid",
"the input file is valid",
"not listed in a valid meta-data ALT entry"]
"not listed in a valid meta-data ALT entry",
"Chromosome is not a string without colons or whitespaces"]
vcf_validation_error_grep_command_chain = " | ".join(['grep -v "{0}"'.format(error_class) for error_class in
vcf_validation_report_error_classes_to_ignore])
for vcf_validation_report_file in vcf_validation_report_files:
Expand Down

0 comments on commit fc2dbc5

Please sign in to comment.