Skip to content

Commit afac9aa

Browse files
committed
add null default values to params
1 parent 3aa8d21 commit afac9aa

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/ms_stim_analysis/AnalysisTables/sequence_compression.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ class CompressionIndexParams(SpyglassMixin, dj.Lookup):
3838
"""
3939

4040
contents = [
41-
("fast", 10, 100, 5, 10, 150, 33, 30, False, 100),
42-
("default", 10, 100, 5, 10, 100, 33, 30, False, 80),
43-
("slow", 10, 100, 5, 10, 1000, 250, 30, False, 1000),
44-
("fast_graph_distance", 10, 100, 5, 10, 150, 33, 30, True, 100),
45-
("default_graph_distance", 10, 100, 5, 10, 100, 33, 30, True, 80),
46-
("slow_graph_distance", 10, 100, 5, 10, 1500, 250, 30, True, 2000),
47-
("cross_method_graph_distance", 10, 100, 5, 1, 1000, 10, 30, True, 80),
41+
("fast", 10, 100, 5, 10, 150, 33, 30, False, 100, np.nan),
42+
("default", 10, 100, 5, 10, 100, 33, 30, False, 80, np.nan),
43+
("slow", 10, 100, 5, 10, 1000, 250, 30, False, 1000, np.nan),
44+
("fast_graph_distance", 10, 100, 5, 10, 150, 33, 30, True, 100, np.nan),
45+
("default_graph_distance", 10, 100, 5, 10, 100, 33, 30, True, 80, np.nan),
46+
("slow_graph_distance", 10, 100, 5, 10, 1500, 250, 30, True, 2000, np.nan),
47+
("cross_method_graph_distance", 10, 100, 5, 1, 1000, 10, 30, True, 80, np.nan),
4848
]
4949

5050

0 commit comments

Comments
 (0)