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
2 changes: 1 addition & 1 deletion .github/workflows/push_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
auto-activate-base: true
- name: Install dependencies
run: |
mamba install -y -c conda-forge conda-build anaconda-client boa
mamba install -y -c conda-forge conda-build anaconda-client boa python=3.11
- name: Get latest commit SHA from main
id: get_sha
run: |
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ RUN set -e && \
mamba create -y -n snakebids-env -c conda-forge -c bioconda snakebids unzip && \
source /opt/conda/etc/profile.d/conda.sh && \
conda activate snakebids-env && \
./autoafids/run.py test_data/bids_T1w test_out participant --participant-label 001 --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_T1w test_out participant --participant-label 002 --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_T2w test_out participant --modality T2w --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_ct test_out participant --modality ct --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_T1w test_out participant --participant-label 001 --stereotaxy STN --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_T1w test_out participant --participant-label 001 --fidqc --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_T1w test_out participant --participant-label 002 --stereotaxy STN --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
./autoafids/run.py test_data/bids_T1w test_out participant --participant-label 002 --fidqc --use-conda --conda-create-envs-only --cores all --conda-prefix /src/conda-envs && \
conda clean --all -y && \
rm -rf /opt/conda/pkgs /root/.caches

Expand Down
Loading