Skip to content

Commit

Permalink
Revert "Merge pull request #38 from cbg-ethz/enable-unique-modus"
Browse files Browse the repository at this point in the history
This reverts commit ffd4fd1, reversing
changes made to 279cc63.
  • Loading branch information
LaraFuhrmann committed Nov 26, 2024
1 parent 6d8ef4d commit f6cdaa2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def haplotypes_to_fasta(state_curr_dict, output_dir):
ave_reads = state_curr_dict["weight" + str(k)]
if ave_reads==0:
# this haplotype will not be reported as there are no reads
# supporting it.
# supporting it.
continue

head = (
Expand Down
5 changes: 2 additions & 3 deletions viloca/local_haplotype_inference/use_quality_scores/cavi.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,8 @@ def run_cavi(
iter = 0
converged = False
elbo = 0
min_number_iterations = 10
state_curr_dict = state_init_dict
while (converged is False) or (iter < min_number_iterations):
while converged is False:

if iter <= 1:
digamma_alpha_sum = digamma(state_curr_dict["alpha"].sum(axis=0))
Expand Down Expand Up @@ -156,7 +155,7 @@ def run_cavi(
break
elif (history_elbo[-2] > elbo) and np.abs(elbo - history_elbo[-2]) > 1e-08:
exit_message = "Error: ELBO is decreasing."
#break
break
elif np.abs(elbo - history_elbo[-2]) < convergence_threshold:
converged = True
exit_message = "ELBO converged."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main(
K,
alpha0,
alphabet="ACGT-",
unique_modus=True,
unique_modus=False,
convergence_threshold=1e-03,
):

Expand All @@ -46,7 +46,7 @@ def main(
reference_binary, ref_id = preparation.load_reference_seq(fref_in, alphabet)

reads_list, qualities = preparation.load_fasta_and_qualities(
freads_in, fname_qualities, alphabet, unique_modus
freads_in, fname_qualities, alphabet, False
)
reads_seq_binary, reads_weights = preparation.reads_list_to_array(reads_list)
reads_log_error_proba = preparation.compute_reads_log_error_proba(
Expand Down Expand Up @@ -147,9 +147,9 @@ def main(
sys.argv[1],
sys.argv[2],
sys.argv[3],
sys.argv[4],
int(sys.argv[4]),
int(sys.argv[5]),
int(sys.argv[6]),
float(sys.argv[7]),
float(sys.argv[6]),
sys.argv[7],
)
# freads_in, fref_in, output_dir, n_starts, K, alpha0, alphabet = 'ACGT-'

0 comments on commit f6cdaa2

Please sign in to comment.