Skip to content

Commit

Permalink
fix to subtype blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
poquirion committed Apr 26, 2017
1 parent 6f25f1c commit f9f2fab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions extensions/niak_test/niak_test_subtype_demoniak.m
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,10 @@
out_c = [path_test.result 'report_test_regression_subtype_demoniak.csv'];
opt_c.base_source = opt_demo.folder_out;
opt_c.base_target = path_test.reference;
opt_c.black_list_source = {[opt_demo.folder_out 'logs' filesep], [opt_demo.folder_out 'provenance' filesep]};
opt_c.black_list_target = {[path_test.reference 'logs' filesep], [path_test.reference 'provenance' filesep]};
opt_c.black_list_source = {[opt_demo.folder_out 'logs' filesep] ...
,[opt_demo.folder_out 'networks' filesep 'aMPFC' filesep 'provenance_aMPFC.mat']};
opt_c.black_list_target = {[path_test.reference 'logs' filesep] ...
,[path_test.reference 'networks' filesep 'aMPFC' filesep 'provenance_aMPFC.mat']};
pipeline = psom_add_job(pipeline,'test_subtype','niak_test_cmp_files',in_c,out_c,opt_c,false);
pipeline.test_subtype.dep = list_jobs;
end
Expand Down

0 comments on commit f9f2fab

Please sign in to comment.