Skip to content

Commit

Permalink
Added freeze/thaw top-level scripts for 2022-11-17-david sample
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltaylor committed May 24, 2023
1 parent 07ff129 commit 6f0a07b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
17 changes: 17 additions & 0 deletions freeze_2022_11_17_david_octree.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
sample_date = '2022-11-17-david' ;
mj2_output_folder_path = sprintf('/nrs/mouselight/SAMPLES/%s-frozen', sample_date) ;
tif_input_folder_path = sprintf('/nrs/mouselight/SAMPLES/%s', sample_date) ;
compression_ratio = 10 ;
do_run_on_cluster = true ;
do_try = true ; % not used
maximum_running_slot_count = 500 ;
submit_host_name = if_not_a_submit_host('login2.int.janelia.org') ;

freeze_mouselight_folder(mj2_output_folder_path, ...
tif_input_folder_path, ...
compression_ratio, ...
do_run_on_cluster, ...
do_try, ...
maximum_running_slot_count, ...
submit_host_name) ;

16 changes: 16 additions & 0 deletions thaw_2022_11_17_david_octree.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sample_date = '2022-11-17-david' ;
output_folder_path = sprintf('/nrs/mouselight/SAMPLES/%s-frozen-thawed', sample_date) ;
input_folder_path = sprintf('/nrs/mouselight/SAMPLES/%s-frozen', sample_date) ;
do_run_on_cluster = true ;
do_try = true ; % not used
maximum_running_slot_count = 500 ;
submit_host_name = if_not_a_submit_host('login2.int.janelia.org') ;

thaw_mouselight_folder( ...
output_folder_path, ...
input_folder_path, ...
do_run_on_cluster, ...
do_try, ...
maximum_running_slot_count, ...
submit_host_name) ;

0 comments on commit 6f0a07b

Please sign in to comment.