Skip to content

Commit

Permalink
remove list call when checking entry fields
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeaghan committed Nov 27, 2024
1 parent ebf2a0f commit d4f7e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vds_to_vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main(

# Check for required entry fields
required_fields = {'LA', 'LGT', 'DP'}
entry_fields = set(list(mt.entry))
entry_fields = set(mt.entry)
assert required_fields.issubset(entry_fields), f"Missing required entry fields: {required_fields}"

# Convert LGT to GT if necessary
Expand Down

0 comments on commit d4f7e01

Please sign in to comment.