forked from soroush2079/falff_paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ciftify_falff.py
208 lines (163 loc) · 6.85 KB
/
ciftify_falff.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#!/usr/bin/env python
"""
Calculates fractional amplitude of low-frequency fluctuations (fALFF)
Usage:
falff_nifti.py <func.nii.gz> <output.nii.gz> [options]
Arguments:
<func.nii.gz> The functional 4D nifti files
<output.nii.gz> Output filename
Options:
--min-low-freq 0.01 Min low frequency range value Hz [default: 0.01]
--max-low-freq 0.08 Max low frequency range value Hz [default: 0.08]
--min-total-freq 0.00 Min total frequency range value Hz [default: 0.00]
--max-total-freq 0.25 Max total frequency range value Hz [default: 0.25]
--mask-file <maskfile.nii.gz> Input brain mask
--calc-alff Calculates amplitude of low frequency fluctuations (ALFF) instead of fALFF
--debug Debug logging
-h,--help Print help
"""
import os
import numpy as np
import nibabel as nib
import tempfile
import subprocess
from scipy.fftpack import fft
from docopt import docopt
import logging
logger = logging.getLogger(__file__)
def run(cmd):
"""
Run command in shell environment
"""
p = subprocess.Popen(cmd,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = p.communicate()
if p.returncode:
logger.error(f"{cmd} failed with returncode {p.returncode}.\n"
f"STDERR: {err}")
return
def main():
'''Main function to calculate fALFF/ALFF from functional NIFTI files'''
arguments = docopt(__doc__)
funcfile = arguments['<func.nii.gz>']
outputname = arguments['<output.nii.gz>']
min_low_freq = arguments['--min-low-freq']
max_low_freq = arguments['--max-low-freq']
min_total_freq = arguments['--min-total-freq']
max_total_freq = arguments['--max-total-freq']
maskfile = arguments['--mask-file']
calc_alff = arguments['--calc-alff']
logger.setLevel(logging.WARNING)
if arguments['--debug']:
logger.setLevel(logging.DEBUG)
logging.getLogger('ciftify').setLevel(logging.DEBUG)
logger.info(arguments)
with tempfile.TemporaryDirectory() as tmpdir:
# Convert CIFTI file to NIFTI file
func = nib.load(funcfile)
if isinstance(func, nib.cifti2.cifti2.Cifti2Image):
inputfile = convert_cifti_to_nifti(funcfile, tmpdir)
if maskfile:
maskinput = convert_cifti_to_nifti(maskfile, tmpdir)
else:
maskinput = None
repetition_time = func.header.get_axis(0).step
elif isinstance(func, nib.nifti1.Nifti1Image):
inputfile = funcfile
if maskfile:
maskinput = maskfile
else:
maskinput = None
repetition_time = func.header['pixdim'][4]
else:
raise IOError(
"Could not read <func.nii.gz> as nifti or cifti file")
# Calculate ALFF/fALFF from the NIFTI input
falff_nifti_output = calc_nifti(inputfile, maskinput, min_low_freq,
max_low_freq, min_total_freq,
max_total_freq, tmpdir, calc_alff,
repetition_time)
if isinstance(func, nib.Cifti2Image):
convert_nifti_to_cifti(falff_nifti_output, funcfile, outputname)
elif isinstance(func, nib.Nifti1Image):
run("mv {} {}".format(falff_nifti_output, outputname))
# If input is CIFTI, convert to fake NIFTI (fake_nifti_input)
# Convert to NIFTI
def convert_cifti_to_nifti(funcfile, tmpdir):
fake_nifti_input = os.path.join(tmpdir, 'input_fake.nii.gz')
run('wb_command -cifti-convert -to-nifti {} {} '.format(
funcfile, fake_nifti_input))
return fake_nifti_input
# If input is CIFTI, convert NIFTI output (falff_nifti_output) back to CIFTI
# Convert to CIFTI
def convert_nifti_to_cifti(falff_nifti_output, funcfile, outputname):
run('wb_command -cifti-convert -from-nifti {} {} {} -reset-scalars'.format(
falff_nifti_output, funcfile, outputname))
def calc_nifti(inputfile, maskfile, min_low_freq, max_low_freq, min_total_freq,
max_total_freq, tmpdir, calc_alff, repetition_time):
'''
calculates fALFF from NIFTI input and retruns NIFTI output
Takes input files to give to falff function and returns output file
'''
# Load in functional data
func_img = nib.load(inputfile)
func_data = func_img.get_fdata()
# If given input of mask, load in mask file
# OR if not given input of mask, create mask using std
if maskfile:
# 1. Given input of mask file
mask = (nib.load(maskfile)).get_fdata()
else:
# 2. Manually create mask
mask = np.std(func_data, axis=3)
# Find indices where mask does not = 0
indx, indy, indz = np.where(mask != 0)
# Define affine array
affine = func_img.affine
# Define x,y,z,t coordinates
x, y, z, t = func_data.shape
# Create empty array to save values
falff_vol = np.zeros((x, y, z))
# Loop through x,y,z indices, send to calculate_falff function
for x, y, z in zip(indx, indy, indz):
falff_vol[x, y, z] = calculate_falff(func_data[x, y, z, :],
min_low_freq, max_low_freq,
min_total_freq, max_total_freq,
calc_alff, repetition_time)
# Save falff values to fake nifti output temp file
output_3D = nib.Nifti1Image(falff_vol, affine)
falff_nifti_output = os.path.join(
tmpdir, 'output_fake.nii.gz')
output_3D.to_filename(falff_nifti_output)
return falff_nifti_output
# CALCULATES FALFF
def calculate_falff(timeseries, min_low_freq, max_low_freq, min_total_freq,
max_total_freq, calc_alff, repetition_time):
''' this will calculate falff from a timeseries'''
n = len(timeseries)
# Takes fast Fourier transform of timeseries
fft_timeseries = fft(timeseries)
freq_scale = np.fft.fftfreq(n, repetition_time)
mag = (abs(fft_timeseries))**0.5
low_ind = np.where((float(min_low_freq) <= freq_scale)
& (freq_scale <= float(max_low_freq)))
# Drop the first index, 0 power should always be excluded
total_ind = np.where((float(min_total_freq) <= freq_scale[1:])
& (freq_scale[1:] <= float(max_total_freq)))
low_power = mag[low_ind]
total_power = mag[1:][total_ind]
# Calculates sum of lower power and total power
low_pow_sum = np.sum(low_power)
total_pow_sum = np.sum(total_power)
# Calculates ALFF as the sum of amplitudes within the low frequency range
if calc_alff:
calc = low_pow_sum
# Calculates fALFF as the sum of power in low frequnecy range
# divided by sum of power in the total frequency range
else:
calc = np.divide(low_pow_sum, total_pow_sum)
return calc
if __name__ == '__main__':
main()