Skip to content

Commit 96df233

Browse files
committed
Fixing an issue in gen_mut_model where it was exporting the wrong valuse. We needed the probabilities, not the counts
1 parent a9ba1ff commit 96df233

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neat/gen_mut_model/runner.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ def runner(reference_index,
324324
transition_matrix=snp_transition_bias,
325325
trinuc_trans_matrices=trinuc_transition_bias,
326326
trinuc_mut_bias=trinuc_mutation_probs,
327-
insert_len_model=insertion_counts,
328-
deletion_len_model=deletion_counts
327+
insert_len_model=insertion_freqency,
328+
deletion_len_model=deletion_frequency
329329
)
330330

331331
print('\nSaving model...')

0 commit comments

Comments
 (0)