Skip to content

Commit

Permalink
bug fix: dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
raquellewei committed Oct 18, 2023
1 parent 176860c commit 59bfad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fununifrac/compute_fununifrac_combined.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main():
# Parse the graph and get the FunUniFrac objects Tint, length, and edge_list
tree = make_tree.import_graph(args.edge_list, directed=True)
input: FuncTreeEmduInput = make_emd_input.tree_to_EMDU_input(tree, args.brite)
sample_df = pd.read_csv(args.file)
sample_df = pd.read_csv(args.file, dtype=float)
Ps_pushed = {}
for col in sample_df.columns:
P = sample_df[col].to_numpy()
Expand Down

0 comments on commit 59bfad6

Please sign in to comment.