@@ -17,11 +17,11 @@ def __init__(self, parent):
17
17
18
18
PanelProportion = [2 ,6 ]
19
19
20
- sfLabels = ['Genotype' , 'Day' , 'Mon' , 'Ch' , 'alive' , 'totSleep' , 'rDS' , 'rNS' , 'AI' , 'rD aLSE' , 'rD aNSE' , 'rN aLSE' , 'rN aNSE' ]
21
- sfdataTypes = [gridlib .GRID_VALUE_STRING ] * 4 + [gridlib .GRID_VALUE_NUMBER ] * 1 + [gridlib .GRID_VALUE_FLOAT + ':6,2' ] * 8
20
+ sfLabels = ['Genotype' , 'Day' , 'Mon' , 'Ch' , 'alive' , 'totSleep' , 'rDS' , 'rNS' , 'AI' , 'rD aLSE' , 'rD aNSE' , 'rN aLSE' , 'rN aNSE' , 'latency' ]
21
+ sfdataTypes = [gridlib .GRID_VALUE_STRING ] * 4 + [gridlib .GRID_VALUE_NUMBER ] * 1 + [gridlib .GRID_VALUE_FLOAT + ':6,2' ] * 10
22
22
23
- AVGLabels = ['Genotype' , 'Day' , 'Mon' , 'n(tot)' ,'n(a)' , 'DaySleep' , 'stdDV' ,'rDS' , 'stdDV' ,'rNS' , 'stdDV' , 'AI' , 'stdDV' ]
24
- AVGdataTypes = [gridlib .GRID_VALUE_STRING ] * 3 + [gridlib .GRID_VALUE_NUMBER ] * 2 + [gridlib .GRID_VALUE_FLOAT + ':6,2' ] * 8
23
+ AVGLabels = ['Genotype' , 'Day' , 'Mon' , 'n(tot)' ,'n(a)' , 'DaySleep' , 'stdDV' ,'rDS' , 'stdDV' ,'rNS' , 'stdDV' , 'AI' , 'stdDV' , 'latency' , 'stdDV' ]
24
+ AVGdataTypes = [gridlib .GRID_VALUE_STRING ] * 3 + [gridlib .GRID_VALUE_NUMBER ] * 2 + [gridlib .GRID_VALUE_FLOAT + ':6,2' ] * 10
25
25
26
26
GridGrid .__init__ (self , parent , PanelProportion , [AVGLabels , sfLabels ], [AVGdataTypes , sfdataTypes ])
27
27
self .name = 'All Data'
@@ -75,6 +75,7 @@ def Refresh(self):
75
75
len_sleep_episodes_night = all_sleep_episodes (s5_t [dc ,fc ], 721 , 1440 )
76
76
num_sleep_episodes_day = number_sleep_episodes (s5_t [dc ,fc ], 0 , 720 )
77
77
num_sleep_episodes_night = number_sleep_episodes (s5_t [dc ,fc ], 721 , 1440 )
78
+ latency = sleep_latency (s5_t [dc ,fc ], lightsoff = 720 )
78
79
79
80
single_fly_data .append ([gen_t , day_sl , mon_sl , ch_sl , alive ,
80
81
s5_t [dc ,fc ].sum (),
@@ -84,7 +85,8 @@ def Refresh(self):
84
85
average ( len_sleep_episodes_day ),
85
86
average ( num_sleep_episodes_day ),
86
87
average ( len_sleep_episodes_night ),
87
- average ( num_sleep_episodes_night )
88
+ average ( num_sleep_episodes_night ),
89
+ latency
88
90
])
89
91
90
92
#Here we add data to the pool in case we are dealing with multiple selections
@@ -105,14 +107,16 @@ def Refresh(self):
105
107
dist_day_sleep_by_fly = average (SleepAmountByFly (s5 , t0 = 0 , t1 = 720 ), axis = 0 )
106
108
dist_night_sleep_by_fly = average (SleepAmountByFly (s5 , t0 = 720 , t1 = 1440 ), axis = 0 )
107
109
dist_AI_by_fly = average (ActivityIndexByFly (ax , s5 ), axis = 0 )
110
+ latency = sleep_latency (s5 , 720 )
108
111
109
112
AVGdata = ( [list2str (genotype_set ), list2str (day_set ), list2str (mon_set ),
110
113
num_flies , num_alive ,
111
114
average (dist_tot_sleep_by_fly ), std (dist_tot_sleep_by_fly ),
112
115
average (dist_day_sleep_by_fly ), std (dist_day_sleep_by_fly ),
113
116
average (dist_night_sleep_by_fly ), std (dist_night_sleep_by_fly ),
114
117
average (dist_AI_by_fly ), std (dist_AI_by_fly ),
115
- 0 ,0 ,0 ,0 ,0 ,0
118
+ average (latency ),std (latency ),
119
+ 0 ,0 ,0 ,0
116
120
] )
117
121
118
122
#this places the data in the table
0 commit comments