Skip to content

Commit

Permalink
Define set correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskiil committed Dec 12, 2024
1 parent 8e8a5e7 commit 0c9aadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bifrost_chewbbaca/datadump.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def call_percent(calls):


def multiple_alleles(calls):
multi_allele_codes = set("NIPH","NIPHEM")
multi_allele_codes = {"NIPH","NIPHEM"}
return len([x for x in calls if x in multi_allele_codes])

def schema_digest(locus_names, alg=md5):
Expand Down

0 comments on commit 0c9aadd

Please sign in to comment.