Skip to content

Commit

Permalink
reduced id threshold for reference allele evaluation from 0.90 to 0.85
Browse files Browse the repository at this point in the history
  • Loading branch information
saramonzon authored and luissian committed Apr 2, 2024
1 parent 571dcf0 commit e5c903a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion taranis/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(
ref_seq_name: str,
resolution: float = 0.75,
seed: int = None,
dist_value: float = 0.9,
dist_value: float = 0.85,
):
"""ClusterDistance instance creation
Expand Down
2 changes: 1 addition & 1 deletion taranis/eval_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def evaluate_clusters(
query_file.write(">" + r_id + "\n" + r_seq)
query_file.seek(0)
blast_result = self.blast_obj.run_blast(
query_file.read(), perc_identity=90, query_type="stdin"
query_file.read(), perc_identity=85, query_type="stdin"
)
# Close object and discard memory buffer
query_file.close()
Expand Down

0 comments on commit e5c903a

Please sign in to comment.