Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flip subpeak determination #615

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compose/neurosynth_compose/resources/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ def create_or_update_neurostore_analysis(
"order": point_idx,
}
if not pd.isna(row["Cluster Size (mm3)"]):
point["subpeak"] = True
point["subpeak"] = False
point["cluster_size"] = row["Cluster Size (mm3)"]
else:
point["subpeak"] = False
point["subpeak"] = True
points.append(point)
point_idx += 1
# reference the uploaded images on neurovault to associate images
Expand Down
Loading