comparison COBRAxy/flux_to_map.py @ 498:df90f40a156c draft

Uploaded
author francesco_lapi
date Tue, 30 Sep 2025 16:13:08 +0000
parents 3f8336f8072d
children
comparison
equal deleted inserted replaced
497:36838126cc07 498:df90f40a156c
398 398
399 if math.isnan(pValue) or (isinstance(foldChange, float) and math.isnan(foldChange)): 399 if math.isnan(pValue) or (isinstance(foldChange, float) and math.isnan(foldChange)):
400 continue 400 continue
401 401
402 if isinstance(foldChange, str): foldChange = float(foldChange) 402 if isinstance(foldChange, str): foldChange = float(foldChange)
403 if pValue >= ARGS.pValue: # pValue above tresh: dashed arrow 403 if pValue > ARGS.pValue: # pValue above tresh: dashed arrow
404 INSIGNIFICANT_ARROW.styleReactionElements(metabMap, reactionId) 404 INSIGNIFICANT_ARROW.styleReactionElements(metabMap, reactionId)
405 INSIGNIFICANT_ARROW.styleReactionElements(metabMap, reactionId, mindReactionDir = False) 405 INSIGNIFICANT_ARROW.styleReactionElements(metabMap, reactionId, mindReactionDir = False)
406 406
407 continue 407 continue
408 408