Skip to content

Commit

Permalink
Increase similarity threshold for fast mode
Browse files Browse the repository at this point in the history
  • Loading branch information
aghozlane committed Jan 14, 2025
1 parent d75cc19 commit 953cc29
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions meteor/counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import sys
import pysam
import lzma
import pandas as pd
from dataclasses import dataclass, field
from tempfile import mkdtemp, mkstemp
from pathlib import Path
Expand All @@ -38,7 +37,7 @@ class Counter(Session):
DEFAULT_COUNTING_TYPE: ClassVar[str] = "smart_shared"
NO_IDENTITY_THRESHOLD: ClassVar[float] = 0.0
DEFAULT_IDENTITY_THRESHOLD_COMPLETE: ClassVar[float] = 0.95
DEFAULT_IDENTITY_THRESHOLD_TAXO: ClassVar[float] = 0.97
DEFAULT_IDENTITY_THRESHOLD_TAXO: ClassVar[float] = 0.98

meteor: type[Component]
counting_type: str
Expand Down
1 change: 0 additions & 1 deletion meteor/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class Component:

MIN_BOWTIE2_VERSION: ClassVar[Version] = Version("2.3.5")
MIN_FREEBAYES_VERSION: ClassVar[Version] = Version("1.3.6")
# MIN_MAFFT_VERSION: ClassVar[Version] = Version("7.487")
DEFAULT_GAP_CHAR: ClassVar[str] = "N"
DEFAULT_CORE_SIZE: ClassVar[int] = 100

Expand Down

0 comments on commit 953cc29

Please sign in to comment.