Skip to content

Commit ed42249

Browse files
committed
Remove EchoTime multiplication by 1000 for JSON data - unit conversion is already done by dcm2niix
1 parent 8ddb0a0 commit ed42249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

handler/ezBIDS_core/ezBIDS_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ def generate_dataset_list(uploaded_files_list, exclude_data):
11011101

11021102
# Find EchoTime
11031103
if "EchoTime" in json_data:
1104-
echo_time = json_data["EchoTime"] * 1000
1104+
echo_time = json_data["EchoTime"]
11051105
else:
11061106
echo_time = 0
11071107

0 commit comments

Comments
 (0)