Skip to content

Commit

Permalink
The threshold for clustering.strand bias determination has been loo…
Browse files Browse the repository at this point in the history
…sened.

  + This adjustment addresses cases like `+:13, -:2` (0.87) observed in `example_flox/flox-1nt-deletion`.
  + Since the minor allele is particularly susceptible, further adjustments may be necessary in the future.
  • Loading branch information
akikuno committed Jul 22, 2024
1 parent df81767 commit 5bbaa7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DAJIN2/core/clustering/strand_bias_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"""

# Constants
STRAND_BIAS_LOWER_LIMIT = 0.1
STRAND_BIAS_UPPER_LIMIT = 0.9
STRAND_BIAS_LOWER_LIMIT = 0.2
STRAND_BIAS_UPPER_LIMIT = 0.8


def is_strand_bias(path_control: Path) -> bool:
Expand Down

0 comments on commit 5bbaa7d

Please sign in to comment.