Skip to content

Commit fc7e09a

Browse files
authored
Delete some commented lines in drop_empty_records.py (#561)
1 parent 93f7971 commit fc7e09a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/sv-pipeline/scripts/drop_empty_records.py

-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ def drop_nonref_gts(vcf, fout):
1717
NULL_GT = [(0, 0), (None, None), (0, ), (None, ), (None, 2)]
1818
samples = [s for s in vcf.header.samples]
1919

20-
# for record in vcf.fetch():
21-
# nonref = svu.get_called_samples(record)
22-
# if len(nonref) > 0:
23-
# fout.write(record)
24-
2520
for record in vcf.fetch():
2621
for s in samples:
2722
if is_biallelic(record):

0 commit comments

Comments
 (0)