@@ -75,8 +75,8 @@ class Electrode(dj.Part):
75
75
shank: int # shank index, starts at 0, advance left to right
76
76
shank_col: int # column index, starts at 0, advance left to right
77
77
shank_row: int # row index, starts at 0.
78
- x_coord=NULL: float # (μm ) x coordinate of the electrode within the probe.
79
- y_coord=NULL: float # (μm ) y coordinate of the electrode within the probe.
78
+ x_coord=NULL: float # (um ) x coordinate of the electrode within the probe.
79
+ y_coord=NULL: float # (um ) y coordinate of the electrode within the probe.
80
80
"""
81
81
82
82
@staticmethod
@@ -220,12 +220,12 @@ def build_electrode_layouts(
220
220
221
221
Args:
222
222
site_count_per_shank (int): site count per shank.
223
- col_spacing (float): (μm ) horizontal spacing between sites. Defaults to None (single column).
224
- row_spacing (float): (μm ) vertical spacing between columns. Defaults to None (single row).
225
- white_spacing (float): (μm ) offset spacing. Defaults to None.
223
+ col_spacing (float): (um ) horizontal spacing between sites. Defaults to None (single column).
224
+ row_spacing (float): (um ) vertical spacing between columns. Defaults to None (single row).
225
+ white_spacing (float): (um ) offset spacing. Defaults to None.
226
226
col_count_per_shank (int): number of column per shank. Defaults to 1 (single column).
227
227
shank_count (int): number of shank. Defaults to 1 (single shank).
228
- shank_spacing (float): (μm ) spacing between shanks. Defaults to None (single shank).
228
+ shank_spacing (float): (um ) spacing between shanks. Defaults to None (single shank).
229
229
y_origin (str): {"bottom", "top"}. y value decrements if "top". Defaults to "bottom".
230
230
"""
231
231
row_count = int (site_count_per_shank / col_count_per_shank )
0 commit comments