Skip to content

Commit

Permalink
Merge commit '1cc9b857fc38821f98d0f82197a6a46c6f2ba276'
Browse files Browse the repository at this point in the history
  • Loading branch information
Plogeur committed Jan 14, 2025
2 parents 30d59e3 + 1cc9b85 commit 0b9bc21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stoat/snarl_analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def fill_matrix(self) -> None:
continue

snarl_list = variant.INFO.get('AT', '').split(',') # Extract and split snarl list once per variant
list_list_decomposed_snarl = self.decompose_snarl(snarl_list) # Decompose snarls once per variant
list_set_decomposed_snarl = self.decompose_snarl(snarl_list) # Decompose snarls once per variant

for index_column, genotype in enumerate(genotypes) :

Expand Down
2 changes: 1 addition & 1 deletion tests/verify_truth.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def plot_diff_distribution(test_predicted_labels:list, cleaned_true_labels:list,
# Predict label 1 : No pvalue significative

# ----------------------------- True Positive -----------------------------
true_positive_indices = [
true_positive_indices= [
i for i, (pred, true) in enumerate(zip(test_predicted_labels, cleaned_true_labels))
if pred == 0 and true == 0]

Expand Down

0 comments on commit 0b9bc21

Please sign in to comment.