Skip to content

Commit

Permalink
Rename lib.py to cigar_hit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Sep 27, 2024
1 parent 6564606 commit df51036
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/aligntools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from aligntools.libexceptions import CigarError, CoersionError, \
ParseError, InvalidOperationError, CigarHitRangeError, \
CigarConnectError, EmptyCigarHitListError
from .lib import CigarHit, connect_cigar_hits
from .cigar_hit import CigarHit, connect_cigar_hits
from .coordinate_mapping import CoordinateMapping
from .int_dict import FrozenIntDict
from .cigar_actions import CigarActions
Expand Down
2 changes: 1 addition & 1 deletion src/aligntools/lib.py → src/aligntools/cigar_hit.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Module for handling CIGAR strings and related alignment formats.
Module for handling CIGAR hits.
"""

from math import ceil, floor
Expand Down

0 comments on commit df51036

Please sign in to comment.