Skip to content

Commit

Permalink
added again the try except
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrdis committed Dec 11, 2016
1 parent ac75dec commit 68fc1fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,10 +451,10 @@ def optimize_precision(f_infos, consensus, min_definition = 0.6):
f_infos[f_infos[:,:,0] < consensus,:] = np.nan

def post_process_f_infos(f_infos, consensus, min_definition = 0.6):
#try:
optimize_precision(f_infos, consensus, min_definition)
#except:
# log_msg('PRECISION OPTIMIZATION FAILED, skipping...')
try:
optimize_precision(f_infos, consensus, min_definition)
except:
log_msg('PRECISION OPTIMIZATION FAILED, skipping...')
try:
denoise_heights(f_infos)
except:
Expand Down

0 comments on commit 68fc1fe

Please sign in to comment.