generated from cpp-lln-lab/template_datalad_fMRI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataladConfig.sh
28 lines (21 loc) · 934 Bytes
/
dataladConfig.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
# Mention here where your remote datasets are
# raw dataset url (either GIN or openneuro)
# for DEMO use: [email protected]:/cpp-lln-lab/CPP_visMotion-raw.git
URL_RAW='[email protected]:/JacMatu/2021_Nencki_MultimodalLanguage_JM_raw.git'
# derivatives sibling url
# for DEMO use: [email protected]:/cpp_brewery/CPP_visMotion-derivatives.git
URL_DER='[email protected]:/JacMatu/analyses_MultimodalLanguageMVPA-derivatives.git'
# derivatives/preproc sibling url
# for DEMO use: [email protected]:/cpp_brewery/CPP_visMotion-bidspm-preproc.git
URL_DER_PREPROC=''
# derivatives/stats sibling url
# for DEMO use: [email protected]:/cpp_brewery/CPP_visMotion-bidspm-stats.git
URL_DER_STATS=''
# GIN base name
# to create siblings automatically for each new repo (i.e. analysis_visualMotionLoc)
GIN_BASENAME=''
if [ -z "${URL_RAW}" ]; then
echo "Error: the URL for the raw cannot be empty"
exit 1
fi