Skip to content

Commit

Permalink
rm debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanMainguy committed Oct 15, 2024
1 parent a79076b commit d99404c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ppanggolin/annotate/annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -1207,10 +1207,6 @@ def local_identifiers_are_unique(genes: Iterable[Gene]) -> bool:
gene_id_2_local = {}
local_to_gene_id = {}
for gene in genes:
if gene.local_identifier in local_to_gene_id:
print(gene.local_identifier, "DUP")
if gene.ID in gene_id_2_local:
print(gene.ID, "DUP")
gene_id_2_local[gene.ID] = gene.local_identifier
local_to_gene_id[gene.local_identifier] = gene.ID
if len(local_to_gene_id) != len(gene_id_2_local):
Expand Down

0 comments on commit d99404c

Please sign in to comment.