#author("2025-03-13T06:38:39+00:00","default:fmri","fmri")
#author("2025-03-13T06:38:50+00:00","default:fmri","fmri")
[[DataProcessing3T]]
[[Prisma]]
*Data server [#o6d5fda6]
File server: hebb~
nfs://hebb/export/usr1~
**3T [#r1d42d03]
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 [#r0ac2406]
samba/physiofixdata2 : analog recording data(fMRI studies)~
samba/video2 : movie data(fMRI studies)~
sdc/data : dicom data transferred from the scanner~
samba/physiofixdata2 : analog recording data(fMRI studies)
samba/video2 : movie data(fMRI studies)
sdc/data : dicom data transferred from the scanner
*Data folder structure [#k59ee931]
**3T case [#ke0257b7]
└── 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(.) [#b87cb2af]
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>