- Connect to Biowulf via NoMachine
- Launch a terminal on Biowulf
- Run:
singularity run \
--cleanenv \
-B /autofs/cluster/gerenuk/pwighton/singularity-images/license.txt:/license.txt \
-B /autofs/cluster/gerenuk/pwighton/fmriprep-singularity/ds003455:/data \
--env FS_LICENSE='/license.txt' \
/autofs/cluster/gerenuk/pwighton/singularity-images/fmriprep-20.2.0rc2.simg \
/data \
/data/derivatives2 \
participant \
#!/usr/bin/env python3 | |
import argparse | |
import socket | |
import traceback | |
parser = argparse.ArgumentParser(description="Parse command line options") | |
parser.add_argument("port") | |
parser.add_argument("outfile") | |
args = parser.parse_args() |
Notes on how to install FreeSurfer 6.0 so that every command used during the course tutorials can be run. This fills in some missing details documented here
fs-aseg.json
that has been kindly provided by Emily Lindemer.FROM amazonlinux:latest | |
# root does everything for now | |
# --------------------------------------------------------------------- | |
USER root | |
# For freesurfer | |
# --------------------------------------------------------------------- | |
# So that we can run `yum -y install git-lfs` | |
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | bash |