Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raquellewei committed Oct 17, 2023
1 parent ea12dfa commit 6a46725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fununifrac/reproducibility/simulate_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main():
meta_dict = dict()
for col in df.columns[:50]:
meta_dict[col] = "environment 1"
for col in df.column[50:]:
for col in df.columns[50:]:
meta_dict[col] = "environment 2"
meta_df = pd.DataFrame(meta_dict.items(), columns=['sample', 'env'])
meta_df.to_csv(f"{args.out_dir}/simulated_metadata.csv")
Expand Down

0 comments on commit 6a46725

Please sign in to comment.