Skip to content

Commit

Permalink
Merge pull request #522 from cpp-lln-lab/removeDummies
Browse files Browse the repository at this point in the history
[ENH] transformers 2
  • Loading branch information
Remi-Gau authored Feb 23, 2022
2 parents 23d5b94 + 81b52e4 commit c6b896d
Show file tree
Hide file tree
Showing 21 changed files with 1,117 additions and 351 deletions.
2 changes: 1 addition & 1 deletion lib/mancoreg/mancoreg.m
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function mancoreg(varargin)

is_file = @(x) exist(x, 'file')==2;

default_sliderStep = '0.01';
default_sliderStep = 0.01;
default_file = [];

addParameter(p, 'targetimage', default_file, is_file);
Expand Down
6 changes: 3 additions & 3 deletions miss_hit.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ copyright_entity: "Stephan Heunis"
tab_width: 2

# metrics limit for the code quality (https://florianschanda.github.io/miss_hit/metrics.html)
metric "cnest": limit 4
metric "file_length": limit 400
metric "cyc": limit 14
metric "cnest": limit 5
metric "file_length": limit 500
metric "cyc": limit 20
metric "parameters": limit 7
2 changes: 1 addition & 1 deletion src/batches/stats/setBatchSubjectLevelGLMSpec.m
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
for iRun = 1:nbRuns

if ~strcmp(runs{iRun}, '')
printToScreen(sprintf(1, 'Processing run %s\n', runs{iRun}), opt);
printToScreen(sprintf('\n Processing run %s\n', runs{iRun}), opt);
end

spmSess(spmSessCounter).scans = getBoldFilenameForFFX(BIDS, opt, subLabel, iSes, iRun);
Expand Down
Loading

0 comments on commit c6b896d

Please sign in to comment.