Skip to content

Commit 376d7ca

Browse files
committed
[io] uncomment warning for non SNP entries
1 parent 09a79b6 commit 376d7ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

variantworks/io/vcfio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def _parse_vcf(self, vcf_file, bam, labels, is_fp=False):
164164
record, vcf_file)
165165
)
166166
if not record.is_snp:
167-
# warnings.warn("%s is filtered - not an SNP record" % record)
167+
warnings.warn("%s is filtered - not an SNP record" % record)
168168
continue
169169
if len(record.ALT) > 1:
170170
warnings.warn(

0 commit comments

Comments
 (0)