Skip to content

Commit 44762d0

Browse files
committed
Better formatted error message for ancestral alleles
1 parent 7db1d38 commit 44762d0

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

tsinfer/formats.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -2405,11 +2405,16 @@ def sites_ancestral_allele(self):
24052405
except IndexError:
24062406
unknown_alleles[allele] += 1
24072407
ret[i] = allele_index
2408-
if sum(unknown_alleles.values()) > 0:
2408+
tot = unknown_alleles.total()
2409+
if tot > 0:
24092410
warnings.warn(
2410-
"The following alleles were not found in the variant_allele array "
2411-
"and will be treated as unknown:\n"
2412-
f"{unknown_alleles}"
2411+
"Ancestral alleles were not found in the variant_allele "
2412+
f"array for {tot} sites ({tot/len(string_allele)*100:.2f}%). "
2413+
"They are listed below, and will be treated as unknown:\n "
2414+
+ "\n ".join(
2415+
f"'{k}': {v} ({v/len(string_allele)*100:.2f}% of sites)"
2416+
for k, v in unknown_alleles.items()
2417+
)
24132418
)
24142419
return ret
24152420

0 commit comments

Comments
 (0)