Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 21, 2024
1 parent aa4f2af commit f172a5e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions strkit/mi/longtr.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ def calculate_contig(self, contig: str) -> MIContigResult:

# We want all common loci, so loop through the child and then look for the loci in the parent calls

print(self._loci_dict)

for cv in cvf.fetch(contig):
mv = next(mvf.fetch(contig, cv.start, cv.stop), None)
fv = next(fvf.fetch(contig, cv.start, cv.stop), None)
Expand All @@ -33,6 +35,7 @@ def calculate_contig(self, contig: str) -> MIContigResult:
k = (contig, cv.start, cv.stop)

if self.should_skip_locus(*k):
print("should skip", k)
continue

cr.seen_locus(*k)
Expand Down

0 comments on commit f172a5e

Please sign in to comment.