Skip to content

Commit

Permalink
restoring previous large thresholds for contigs selection
Browse files Browse the repository at this point in the history
  • Loading branch information
azufre451 committed May 19, 2020
1 parent 64db8e8 commit eb4969f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions step2_contig_filtering/analyze_contigs_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,22 @@ def islarge(a):
#thr_samples_notbest_unbinned = 50

############## LARGE THRESHOLDS ################
thr_prev_hits_other_dataset_distinct = 1
thr_other_contigs_w_this_SGB_ALN_length = 30000
#thr_prev_hits_other_dataset_distinct = 1
#thr_other_contigs_w_this_SGB_ALN_length = 30000
#thr_samples_same_as_best = 30
#thr_samples_notbest_binned_otherbin = 50
#thr_samples_SGB_assigned_best_and_notbest = 50
#thr_samples_notbest_unbinned = 20

############## SUPER LARGE THRESHOLDS ################
thr_prev_hits_other_dataset_distinct = 0
thr_other_contigs_w_this_SGB_ALN_length = 50000
thr_samples_same_as_best = 30
thr_samples_notbest_binned_otherbin = 50
thr_samples_SGB_assigned_best_and_notbest = 50
thr_samples_notbest_unbinned = 20


myContigs['prev_hits_other_dataset_distinct'] = myContigs['prev_hits_other_dataset_distinct'].replace('', np.nan).fillna(0)


Expand Down

0 comments on commit eb4969f

Please sign in to comment.