Skip to content

Commit

Permalink
copy rather than symlink phy test data
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed Feb 19, 2024
1 parent caa3e75 commit 69e1210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyflask/manageNeuroconv/manage_neuroconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ def generate_dataset(input_path: str, output_path: str):
if base_id in file:
os.rename(os.path.join(root, file), os.path.join(root, file.replace(base_id, full_id)))

phy_output_dir.symlink_to(phy_base_directory, True)
copytree(phy_base_directory, phy_output_dir)

return {"output_path": str(output_path)}

Expand Down

0 comments on commit 69e1210

Please sign in to comment.