forked from AlessioZanga/PyEEGLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·21 lines (16 loc) · 986 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.PHONY: tuh_eeg_abnormal tuh_eeg_artifact eegmmidb clean
tuh_eeg_abnormal:
echo "Request your access password at: https://www.isip.piconepress.com/projects/tuh_eeg/html/request_access.php"
rsync -auxvL nedc_tuh_eeg@www.isip.piconepress.com:~/data/tuh_eeg_abnormal/ data/tuh_eeg_abnormal
tuh_eeg_artifact:
echo "Request your access password at: https://www.isip.piconepress.com/projects/tuh_eeg/html/request_access.php"
rsync -auxvL nedc_tuh_eeg@www.isip.piconepress.com:~/data/tuh_eeg_artifact/ data/tuh_eeg_artifact
tuh_eeg_seizure:
echo "Request your access password at: https://www.isip.piconepress.com/projects/tuh_eeg/html/request_access.php"
rsync -auxvL nedc_tuh_eeg@www.isip.piconepress.com:~/data/tuh_eeg_seizure/v1.5.2 data/tuh_eeg_seizure
eegmmidb:
wget -r -N -c -np https://physionet.org/files/eegmmidb/1.0.0/ -P data
clean:
find -L data -iname "*.db" -type f -delete
find -L data -iname "*.log" -type f -delete
find -L data -iname "*.fif.gz" -type f -delete