Skip to content

Commit

Permalink
adding print debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Melissa Gymrek authored and Melissa Gymrek committed Aug 31, 2024
1 parent 1508c0e commit 4832a8e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions trtools/utils/tr_harmonizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ def _HarmonizeHipSTRRecord(vcfrecord: cyvcf2.Variant):
-------
TRRecord
"""
print(vcfrecord.ALT)
if (vcfrecord.INFO.get('START') is None
or vcfrecord.INFO.get('END') is None
or vcfrecord.INFO.get('PERIOD') is None):
Expand Down Expand Up @@ -747,9 +748,6 @@ def __init__(self,
]

# Update min/max length
print(self.alt_alleles)
print(self.alt_allele_lengths)
print(self.ref_allele_length)
if len(self.alt_alleles) > 0:
self.min_allele_length = min(self.ref_allele_length, min(self.alt_allele_lengths))
self.max_allele_length = max(self.ref_allele_length, max(self.alt_allele_lengths))
Expand Down

0 comments on commit 4832a8e

Please sign in to comment.