helpers.py
Helper methods for DataJoint tables, inherited as SpyglassHelpers.
HelperMixin
¶
Bases: BaseMixin
Helper methods for DataJoint tables.
Source code in src/spyglass/utils/mixins/helpers.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | |
dict_to_pk(key)
¶
dict_to_full_key(key)
¶
camel_name
property
¶
Return table name in camel case.
file_like(name=None, **kwargs)
¶
Convenience method for wildcard search on file name fields.
Source code in src/spyglass/utils/mixins/helpers.py
restrict_by_list(field, values, return_restr=False)
¶
Restrict a field by list of values.
Source code in src/spyglass/utils/mixins/helpers.py
find_insert_fail(key)
¶
Find which parent table is causing an IntergrityError on insert.
Source code in src/spyglass/utils/mixins/helpers.py
ensure_single_entry(key=True)
¶
Ensure that the key corresponds to a single entry in the table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
dict
|
The key to check. Default to True, no further restriction of |
True
|
Source code in src/spyglass/utils/mixins/helpers.py
load_shared_schemas(additional_prefixes=None)
¶
Load shared schemas to include in graph traversal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
additional_prefixes
|
list
|
Additional prefixes to load. Default None. |
None
|
Source code in src/spyglass/utils/mixins/helpers.py
delete_orphans(dry_run=True, **kwargs)
¶
Get entries in the table without any child table entries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dry_run
|
bool
|
If True, return the orphaned entries without deleting them. Default True. |
True
|
**kwargs
|
dict
|
Passed to datajoint.table.Table.delete if dry_run is False. |
{}
|
Returns:
| Type | Description |
|---|---|
(QueryExpression, optional)
|
If dry_run, a query expression containing the orphaned entries. |
Source code in src/spyglass/utils/mixins/helpers.py
exec_sql_fetchall(query)
¶
Execute the given query and fetch the results. Parameters
query : str
The SQL query to execute. Returns
The SQL query to execute. Returns
list of tuples The results of the query.
Source code in src/spyglass/utils/mixins/helpers.py
check_threads(detailed=False, all_threads=False)
¶
Check for locked threads in the database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
detailed
|
bool
|
Show all columns in the metadata_locks table. Default False, show summary. |
False
|
all_threads
|
bool
|
Show all threads, not just those related to this table. Default False. |
False
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
A DataFrame containing the metadata locks. |
Source code in src/spyglass/utils/mixins/helpers.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | |
get_table_storage_usage(human_readable=False, show_progress=False)
¶
Total size of all analysis files in the table.
Uses the analysis_file_name field to find the file paths and sum their sizes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
human_readable
|
bool
|
If True, return a human-readable string of the total size. Default False, returns total size in bytes. |
False
|
show_progress
|
bool
|
If True, show a progress bar while calculating the total size. Default False. |
False
|
Returns:
| Type | Description |
|---|---|
Union[str, int]
|
Total size of all analysis files in the table. If human_readable is True, returns a string with the size in bytes, KiB, MiB, GiB, TiB, or PiB. If human_readable is False, returns the total size in bytes. |