-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathniftiToBids.py
118 lines (105 loc) · 3.76 KB
/
niftiToBids.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import os
pipelineDirectory = os.getcwd()
niftiDirectory = os.path.join(pipelineDirectory, 'convertToBids')
parentBIDS = os.path.join(pipelineDirectory, 'BIDS')
setup = False
try:
os.mkdir(parentBIDS)
setup = True
except Exception as e:
print(f'\nmoving on...\n')
descFName = 'dataset_description.json'
if setup:
os.system(f'cp CHANGEME_dataset_description.json {os.path.join(parentBIDS, descFName)}')
os.chdir(parentBIDS)
#os.system('touch dataset_description.json')
os.system('touch participants.tsv')
os.chdir(pipelineDirectory)
def getFileName(file, sub):
'''returns (newFilename, destination)'''
newName = f'{sub}'
# ignore unneeded
skipThese = ['ORIG', 'Calibration', '.mat', '.txt']
for bad in skipThese:
if bad in file:
return None, None
if 'hyper3' in file:
# file is for dwi
dest = 'dwi'
# add dir tag
if 'x_' in file:
newName = f'{newName}_dir-rev'
else:
newName = f'{newName}_dir-std'
# add acq tag
if 'b2000_' in file:
newName = f'{newName}_acq-midb_dwi'
elif 'b10_' in file:
newName = f'{newName}_acq-lowb_dwi'
elif 'b4000_' in file:
newName = f'{newName}_acq-highb_dwi'
# add file ext
if '.nii.gz' in file:
newName = f'{newName}.nii.gz'
elif '.bval' in file:
newName = f'{newName}.bval'
elif '.bvec' in file:
newName = f'{newName}.bvec'
else:
# file is for anat
dest = 'anat'
if 'T2' in file:
if 'FLAIR' in file:
newName = f'{newName}_acq-flair'
elif 'CUBE' in file:
newName = f'{newName}_acq-cube'
newName = f'{newName}_T2w.nii.gz'
else:
if 'T1' in file:
newName = f'{newName}_T1w.nii.gz'
if '.' in newName: return newName, dest
else: return None, None
for subjID in os.listdir(niftiDirectory):
currSubDir = os.path.join(niftiDirectory, subjID)
outDirectory = os.path.join(parentBIDS, f'sub-{subjID}')
try:
os.mkdir(outDirectory)
except Exception as e:
print(f'{e}\nMoving on from participant {subjID}...')
continue
sesN = 1
for sesID in os.listdir(currSubDir):
currNifti = os.path.join(currSubDir, sesID)
sesOutDir = os.path.join(outDirectory, f'ses-{sesN}')
os.mkdir(sesOutDir)
anatDir = os.path.join(sesOutDir, 'anat')
dwiDir = os.path.join(sesOutDir, 'dwi')
os.mkdir(anatDir)
os.mkdir(dwiDir)
#print(os.listdir(currNifti))
for fileToMove in os.listdir(currNifti):
'''change the content of the below statement between passs and continue based on desire for b10 files in output'''
if 'b10_' in fileToMove:
continue
#pass
# Begin sorting files from nifti directory
oldFile = os.path.join(currNifti, fileToMove)
subSesTag = f'sub-{subjID}_ses-{sesN}'
newFile, destination = getFileName(fileToMove, subSesTag)
if destination == 'anat':
toHere = os.path.join(anatDir, newFile)
elif destination == 'dwi':
toHere = os.path.join(dwiDir, newFile)
elif destination == None:
continue
# match destination:
# case 'anat':
# toHere = os.path.join(anatDir, newFile)
# case 'dwi':
# toHere = os.path.join(dwiDir, newFile)
# case None:
# continue
copyCMD = f'cp {oldFile} {toHere}'
print(copyCMD)
os.system(copyCMD)
sesN += 1