Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Minor bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbellec committed Nov 22, 2010
1 parent ac4ed04 commit 56dcb3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion psom_files2cell.m
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@
function str2 = sub_suppress_doublon(str)

str2 = str;
while ~isempty(findstr([filesep filesep],str2))
while ~isempty(strfind(str2,[filesep filesep]))
str2 = strrep(str2,[filesep filesep],filesep);
end
2 changes: 1 addition & 1 deletion psom_run_pipeline.m
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@

gb_name_structure = 'opt';
gb_list_fields = {'flag_clean' , 'flag_pause' , 'init_matlab' , 'flag_update' , 'flag_debug' , 'path_search' , 'restart' , 'shell_options' , 'path_logs' , 'command_matlab' , 'flag_verbose' , 'mode' , 'mode_pipeline_manager' , 'max_queued' , 'qsub_options' , 'time_between_checks' , 'nb_checks_per_point' , 'time_cool_down' };
gb_list_defaults = {true , true , gb_psom_init_matlab , true , false , gb_psom_path_search , {} , gb_psom_shell_options , NaN , '' , true , gb_psom_mode , gb_psom_mode_pm , 0 , gb_psom_qsub_options , [] , [] , [] };
gb_list_defaults = {true , true , gb_psom_init_matlab , true , false , gb_psom_path_search , {} , gb_psom_shell_options , NaN , '' , true , gb_psom_mode , gb_psom_mode_pm , 0 , gb_psom_qsub_options , [] , [] , [] };
psom_set_defaults

if isempty(path_search)
Expand Down

0 comments on commit 56dcb3f

Please sign in to comment.