Skip to content
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
6 changes: 6 additions & 0 deletions cubids/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1107,6 +1107,12 @@ def assign_variants(summary, rename_cols):
acq_str += "Unused"
else:
acq_str += "IsUsed"
elif col == "Obliquity":
val = summary.loc[row, col]
if val == "True":
acq_str += "Oblique"
elif val == "False":
acq_str += "Plumb"
else:
val = summary.loc[row, col]
# If the value is a string float (contains decimal point)
Expand Down