Skip to content

Commit cc2168f

Browse files
authored
Merge pull request #451 from EBIvariation/tcezard-patch-1
EVA-3087 - Allow contig name to be invalid in the release QC
2 parents 8cd87c7 + fc2dbc5 commit cc2168f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eva-accession-release-automation/run_release_in_embassy/analyze_vcf_validation_results.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def analyze_vcf_validation_files(vcf_validation_report_files):
3232
"do not share the first nucleotide",
3333
"the input file is not valid",
3434
"the input file is valid",
35-
"not listed in a valid meta-data ALT entry"]
35+
"not listed in a valid meta-data ALT entry",
36+
"Chromosome is not a string without colons or whitespaces"]
3637
vcf_validation_error_grep_command_chain = " | ".join(['grep -v "{0}"'.format(error_class) for error_class in
3738
vcf_validation_report_error_classes_to_ignore])
3839
for vcf_validation_report_file in vcf_validation_report_files:

0 commit comments

Comments
 (0)