Skip to content

Commit da85fc1

Browse files
committed
avoid declaring unused tables
1 parent c97c875 commit da85fc1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ms_stim_analysis/AnalysisTables/place_fields.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,10 @@ def fetch1_dataframe(self) -> pd.DataFrame:
441441
return nwb[0]["coverage"]
442442

443443

444+
"""
445+
Not used in final paper, but could be useful for future analyses
446+
Commenting out for now to avoid errors on declaration in Docker container
447+
444448
@schema
445449
class DecodesToCoveredTrackSelection(SpyglassMixin, dj.Manual):
446450
definition = """
@@ -506,3 +510,4 @@ def fetch_intervals(self, key={}):
506510
for s, e in zip(start, end):
507511
intervals.append([time[s], time[e]])
508512
return np.array(intervals)
513+
"""

0 commit comments

Comments
 (0)