forked from SIMEXP/fmriprep-denoise-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
28 lines (21 loc) · 731 Bytes
/
Makefile
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
.PHONY: help atlas templateflow data book all
PYTHON ?= python
all: download book
help:
@echo "Please use 'make <target>' where <target> is one of:"
@echo " atlas to download atlases for analysis"
@echo " templateflow to process the atlases for analysis"
@echo " data to download data needed for jupyter book"
@echo " book to compile the jupyter book"
@echo " all to run 'atlas', templateflow, and 'book'"
atlas:
@echo "Download the original atlases..."
$(PYTHON) scripts/fetch_templates.py
templateflow:
@echo "Prepare for Templateflow..."
bash scripts/setup_templateflow.py
data:
@echo "Download input data to build the report"
$(PYTHON) scripts/download_data.py
book:
jb build content --all