Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
drv850 committed Nov 4, 2024
1 parent 43edf58 commit 12ec6f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpretation/NID.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def GenNet_pairwise_interactions_topn(w_input, w_later, masks, n):
n cannot be a larger number than the smallest gene size
'''

mask = masks[0] if type(mask) == list else mask # changed
mask = masks[0] if type(masks) == list else mask # changed
mask_row = np.array(mask.row)
mask_col = np.array(mask.col)
mask_data = abs(np.array(w_input))
Expand Down

0 comments on commit 12ec6f1

Please sign in to comment.