forked from MouseLightPipeline/pipeline-stitching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstitch_2020_11_26.m
23 lines (22 loc) · 1.23 KB
/
stitch_2020_11_26.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% Specify the input/output folders
sample_tag = '2020-11-26' %#ok<NOPTS>
analysis_tag = 'production-classifier-z-match-count-threshold-50'
do_force_computations = false
do_perform_field_correction = true
do_run_in_debug_mode = false
do_show_visualizations = false
this_folder_path = fileparts(mfilename('fullpath')) ;
tile_folder_path = sprintf('/groups/mousebrainmicro/mousebrainmicro/data/%s/Tiling', sample_tag) %#ok<NOPTS>
pipeline_output_folder = sprintf('/nrs/mouselight/pipeline_output/%s', sample_tag) %#ok<NOPTS>
sample_memo_folder_path = fullfile(this_folder_path, 'memos', sample_tag) ;
analysis_memo_folder_path = fullfile(sample_memo_folder_path, analysis_tag) ;
stitching_output_folder_path = fullfile(analysis_memo_folder_path, 'stitching-output') ;
% Call the function that does the real work
stitch_options = struct('do_force_computations', do_force_computations, ...
'do_perform_field_correction', do_perform_field_correction, ...
'do_run_in_debug_mode', do_run_in_debug_mode, ...
'do_show_visualizations', do_show_visualizations) ;
stitch(tile_folder_path, ...
pipeline_output_folder, ...
stitching_output_folder_path, ...
stitch_options) ;