Skip to content
Snippets Groups Projects
Commit 064c5b73 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

change(signal): pass in_minutes when fetching list

parent afb70a35
No related branches found
No related tags found
No related merge requests found
...@@ -278,7 +278,10 @@ class Signal(BridgeH5): ...@@ -278,7 +278,10 @@ class Signal(BridgeH5):
if in_minutes: if in_minutes:
df = self.cols_in_mins(df) df = self.cols_in_mins(df)
elif isinstance(dataset, list): elif isinstance(dataset, list):
return [self.get_raw(dset) for dset in dataset] return [
self.get_raw(dset, in_minutes=in_minutes, lineage=lineage)
for dset in dataset
]
if lineage: # assume that df is sorted if lineage: # assume that df is sorted
mother_label = np.zeros(len(df), dtype=int) mother_label = np.zeros(len(df), dtype=int)
lineage = self.lineage() lineage = self.lineage()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment