History of DataFolderStructure (No. 2)
- History
- View the diff.
- View the diff current.
- View the source.
- Go to DataFolderStructure.
- 1 (2025-03-07 (Fri) 01:08:15)
- 2 (2025-03-07 (Fri) 03:38:07)
Data server†
File server: hebb
nfs://hebb/export/usr1
3T†
samba/physiofixdata : analog recording data(fMRI studies)~ samba/video : movie data(fMRI studies)~ samba/data : dicom data transferred from the scanner~ samba/study : links to the individual data folder~
example:
scan date: 2016Jun23 subjectID:110404M2001 LAB/experimenter: CBM project name: FMRI
samba/data/160623/110404M2001.CBM_FMRI/
7T†
samba/physiofixdata2 : analog recording data(fMRI studies)~ samba/video2 : movie data(fMRI studies)~ sdc/data : dicom data transferred from the scanner~
Data folder structure†
3T case†
└── 250307M2002.CBSlab_EXP ├── 0001 <Symbolic link to the DICOM data in IMA> ├── 0002 <.> ├── 0003 <.> ├── 0004 <.> ├── 0005 <.> ├── 0006 <.> ├── 0007 <.> ├── 0008 <.> ├── 0009 <Symbolic link to the DICOM data in IMA> ├── IMA <All DICOM data> ├── af3_log.txt <data save log> ├── dat <raw data> ├── physio <analog data> └── video <video data>
To save data into the current folder(.)†
rsync command
IMA and dat folders are excluded > rsync -ahvL /usr1/samba/data/250307/250307M2002.CBSlab_EXP . --exclude 'dat' --exclude 'IMA' <RET> To copy with the raw data > rsync -ahvL /usr1/samba/data/250307/250307M2002.CBSlab_EXP . --exclude 'IMA' <RET>
cp command
>cp -pr /usr1/samba/data/250307/250307M2002.CBSlab_EXP ./ <RET>