File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -2405,11 +2405,16 @@ def sites_ancestral_allele(self):
2405
2405
except IndexError :
2406
2406
unknown_alleles [allele ] += 1
2407
2407
ret [i ] = allele_index
2408
- if sum (unknown_alleles .values ()) > 0 :
2408
+ tot = unknown_alleles .total ()
2409
+ if tot > 0 :
2409
2410
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
+ )
2413
2418
)
2414
2419
return ret
2415
2420
You can’t perform that action at this time.
0 commit comments