Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
.vscode
.git
.github
env
binder
coverage_html
demos/*/outputs/
demos/*/inputs/
demos/*/cfg/
env
tests

# ignoring this might speed up build
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM ubuntu:focal

#TODO how to update this with the content of the current version
LABEL version="1.0.0"
LABEL version="1.1.2"

# basic OS tools install and also octave
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install \
Expand Down
13 changes: 6 additions & 7 deletions Dockerfile_dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM ubuntu:focal

#TODO how to update this with the content of the current version
LABEL version="1.0.0"
LABEL version="1.1.2dev"

# basic OS tools install and also octave
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install \
Expand Down Expand Up @@ -36,14 +36,13 @@ RUN octave --no-gui --eval "addpath(\"/opt/spm12\"); savepath ();"

# gets the dev branch CPP BIDS pipeline code

# RUN git clone --depth 1 --recurse-submodule https://github.com/cpp-lln-lab/CPP_SPM.git \
# && cd CPP_SPM \
# && git checkout -b dev \
# && git pull origin dev
RUN git clone --depth 1 --recurse-submodule https://github.com/cpp-lln-lab/CPP_SPM.git \
&& cd CPP_SPM \
&& git checkout -b dev \
&& git pull origin dev

# or get the local code base

COPY . CPP_SPM
# COPY . CPP_SPM

RUN mkdir code output

Expand Down
49 changes: 0 additions & 49 deletions src/getBoldFilename.m

This file was deleted.

10 changes: 5 additions & 5 deletions tests/tests_workflows/test_bidsFFX.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
initTestSuite;
end

function test_bidsFfx_contrasts()
function test_bidsFFX_contrasts()

opt = setOptions('vislocalizer');
opt.space = {'MNI'};
Expand All @@ -18,11 +18,11 @@ function test_bidsFfx_contrasts()

matlabbatch = bidsFFX('contrasts', opt);

assertEqual(numel(matlabbatch{1}.spm.stats.con.consess), 4);
assertEqual(numel(matlabbatch{1}.spm.stats.con.consess), 7);

end

function test_bidsFfx_fmriprep_no_smoothing()
function test_bidsFFX_fmriprep_no_smoothing()

opt = setOptions('fmriprep');

Expand All @@ -47,7 +47,7 @@ function test_bidsFfx_fmriprep_no_smoothing()

end

function test_bidsFfx_mni()
function test_bidsFFX_mni()

task = {'vislocalizer'}; % 'vismotion'

Expand All @@ -66,7 +66,7 @@ function test_bidsFfx_mni()

end

function test_bidsFfx_individual()
function test_bidsFFX_individual()

task = {'vislocalizer'}; % 'vismotion'

Expand Down