Skip to content

Commit

Permalink
Corrected thickness and surfacearea switches
Browse files Browse the repository at this point in the history
  • Loading branch information
seanhatton committed Jun 4, 2024
1 parent 78edd22 commit 3a39f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nidm/experiment/tools/nidm_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,14 +288,14 @@ def query(
if output_file is not None:
brainthx.to_csv(output_file)
else:
print(brainvol.to_string())
print(brainthx.to_string())
elif get_brainsurfacearea:
brainsurfacearea = GetBrainSurfaceArea(nidm_file_list=nidm_file_list)
# if output file parameter specified
if output_file is not None:
brainsurfacearea.to_csv(output_file)
else:
print(brainvol.to_string())
print(brainsurfacearea.to_string())
elif query_file:
df = sparql_query_nidm(nidm_file_list.split(","), query_file, output_file)

Expand Down

0 comments on commit 3a39f9d

Please sign in to comment.