@@ -205,7 +205,7 @@ def add_time_bins(dfs, bin_length=3):
205
205
def plot_over_time (dfs , path , title , settings , color = "#4CB391" ):
206
206
num_reads = Plot (path = path + "NumberOfReads_Over_Time.html" ,
207
207
title = "Number of reads over time" )
208
- s = dfs .loc [:, "lengths" ].resample ('10T ' ).count ()
208
+ s = dfs .loc [:, "lengths" ].resample ('10min ' ).count ()
209
209
210
210
fig = px .scatter (
211
211
data_frame = None ,
@@ -228,7 +228,7 @@ def plot_over_time(dfs, path, title, settings, color="#4CB391"):
228
228
if "channelIDs" in dfs :
229
229
pores_over_time = Plot (path = path + "ActivePores_Over_Time.html" ,
230
230
title = "Number of active pores over time" )
231
- s = dfs .loc [:, "channelIDs" ].resample ('10T ' ).nunique ()
231
+ s = dfs .loc [:, "channelIDs" ].resample ('10min ' ).nunique ()
232
232
233
233
fig = px .scatter (
234
234
data_frame = None ,
@@ -254,7 +254,7 @@ def cumulative_yield(dfs, path, title, color, settings):
254
254
cum_yield_gb = Plot (path = path + "CumulativeYieldPlot_Gigabases.html" ,
255
255
title = "Cumulative yield" )
256
256
257
- s = dfs .loc [:, "lengths" ].cumsum ().resample ('10T ' ).max () / 1e9
257
+ s = dfs .loc [:, "lengths" ].cumsum ().resample ('10min ' ).max () / 1e9
258
258
259
259
fig = px .scatter (
260
260
x = s .index .total_seconds () / 3600 ,
@@ -274,7 +274,7 @@ def cumulative_yield(dfs, path, title, color, settings):
274
274
cum_yield_reads = Plot (path = path + "CumulativeYieldPlot_NumberOfReads.html" ,
275
275
title = "Cumulative yield" )
276
276
277
- s = dfs .loc [:, "lengths" ].resample ('10T ' ).count ().cumsum ()
277
+ s = dfs .loc [:, "lengths" ].resample ('10min ' ).count ().cumsum ()
278
278
279
279
fig = px .scatter (
280
280
x = s .index .total_seconds () / 3600 ,
0 commit comments