Skip to content

Commit

Permalink
Update session_creator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Oct 31, 2023
1 parent 846f2b3 commit ed2c8b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions iblrig/session_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ def make_passiveCW_session_delays_ids(seed_num=None): # XXX
# get the delays between the stims (add the first delay)
sess_delays_out = np.insert(np.diff(sess_delays_cumsum), 0, sess_delays_cumsum[0])
tot_dur = (
np.sum(
np.sum(g_len) + np.sum(n_len) + np.sum(t_len) + np.sum(v_len) + np.sum(sess_delays_out)
)
/ 60
np.sum(
np.sum(g_len) + np.sum(n_len) + np.sum(t_len) + np.sum(v_len) + np.sum(sess_delays_out)
)
/ 60
)

# print(f'Stim IDs: {sess_labels_out}')
Expand Down

0 comments on commit ed2c8b8

Please sign in to comment.