Skip to content

Commit

Permalink
Delete some commented lines in drop_empty_records.py (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalker174 authored Jun 28, 2023
1 parent 93f7971 commit fc7e09a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/sv-pipeline/scripts/drop_empty_records.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ def drop_nonref_gts(vcf, fout):
NULL_GT = [(0, 0), (None, None), (0, ), (None, ), (None, 2)]
samples = [s for s in vcf.header.samples]

# for record in vcf.fetch():
# nonref = svu.get_called_samples(record)
# if len(nonref) > 0:
# fout.write(record)

for record in vcf.fetch():
for s in samples:
if is_biallelic(record):
Expand Down

0 comments on commit fc7e09a

Please sign in to comment.