comparison COBRAxy/marea.py @ 272:655e33ca9225 draft default tip

Uploaded
author francesco_lapi
date Mon, 10 Mar 2025 15:54:03 +0000
parents 8e3cbf68cdc4
children
comparison
equal deleted inserted replaced
271:d8412f6c94be 272:655e33ca9225
291 tmp = d.get(el_id[2:]) 291 tmp = d.get(el_id[2:])
292 if tmp != None: 292 if tmp != None:
293 p_val :float = tmp[0] 293 p_val :float = tmp[0]
294 f_c = tmp[1] 294 f_c = tmp[1]
295 z_score = tmp[2] 295 z_score = tmp[2]
296 if p_val < threshold_P_V: 296 if p_val <= threshold_P_V:
297 if not isinstance(f_c, str): 297 if not isinstance(f_c, str):
298 if abs(f_c) < ((threshold_F_C - 1) / (abs(threshold_F_C) + 1)): # 298 if abs(f_c) < ((threshold_F_C - 1) / (abs(threshold_F_C) + 1)): #
299 col = grey 299 col = grey
300 width = str(minT) 300 width = str(minT)
301 else: 301 else: