CAnBioNet / TkNA

9 stars 1 forks source link

assess_network.py needs to handle both floats and ints #2

Closed newmanno closed 1 year ago

newmanno commented 1 year ago

Sometimes when to_csv.py runs, it outputs floats and other times integers. Instead of modifying the output, we can modify how it reads the inputs in assess_network.py.

newmanno commented 1 year ago

Resolved. Now forces floats to ints

if str(int(float(row[final_nw_edge_column]))) == str(1):