Skip to content

Commit

Permalink
refact: move/unnest caller files
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Aug 24, 2023
1 parent 06df517 commit 9713efc
Show file tree
Hide file tree
Showing 13 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion strkit/call/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

from .allele import call_alleles
from .caller import call_sample
from .call_sample import call_sample

__all__ = [
"call_alleles",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 0 additions & 5 deletions strkit/call/caller/__init__.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_caller_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from strkit.call.caller.utils import find_pair_by_ref_pos_py, find_pair_by_ref_pos, normalize_contig, round_to_base_pos
from strkit.call.utils import find_pair_by_ref_pos_py, find_pair_by_ref_pos, normalize_contig, round_to_base_pos

# A A T T C G C C C C A A A A A C
PAIRS = [(0, 1000), (1, 1001), (2, 1003), (3, 1004), (4, 1005), (5, 1006), (6, 1008), (7, 1009)]
Expand Down

0 comments on commit 9713efc

Please sign in to comment.