From 8a34d2ab972ea2c96d4ea9779ae09abfa85fb390 Mon Sep 17 00:00:00 2001 From: lauraporta Date: Fri, 8 Nov 2024 17:31:51 +0000 Subject: [PATCH] Add script useful to launch debugging --- examples/debugging.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/debugging.py diff --git a/examples/debugging.py b/examples/debugging.py new file mode 100644 index 0000000..da17601 --- /dev/null +++ b/examples/debugging.py @@ -0,0 +1,10 @@ +from example_usage import main +from pathlib import Path + + +main( + raw_data_path = Path('/nfs/winstor/margrie/SimonWeiler/RawData/Invivo_imaging/3photon_rotation/shared/'), + output_path = Path('/ceph/margrie/laura/cimaut/'), + folder_read_pattern = '2*', + file_read_pattern = ['rotation_00001.tif', '*.bin'] +) \ No newline at end of file