Skip to content

Commit

Permalink
Added -P mouselight to bsub call
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltaylor committed Mar 13, 2019
1 parent cba395c commit a3fc233
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mj2tif.m
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function mj2tif(input_folder_name, output_folder_name, do_verify, do_run_on_clus
output_entity_path, ...
fif(do_verify, 'true', 'false')) ;
fprintf('Command line: %s\n', command_line) ;
bsub_command_line = sprintf('bsub -o /dev/null -e /dev/null %s', command_line) ;
bsub_command_line = sprintf('bsub -P mouselight -o /dev/null -e /dev/null %s', command_line) ;
fprintf('bsub Command line: %s\n', bsub_command_line) ;
system(bsub_command_line) ;
else
Expand Down
3 changes: 3 additions & 0 deletions thaw_2017_10_31_sample.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
do_verify = false ;
do_on_cluster = true ;
mj2tif('/nrs/mouselight/SAMPLES/compressed_recovered/2017-10-31', '/groups/mousebrainmicro/mousebrainmicro/data/2017-10-31-thawed', do_verify, do_on_cluster) ;

0 comments on commit a3fc233

Please sign in to comment.