BuildDb Class API
Note This class is accessed by the MakeDb
class for building an on-disk database. It is also used by the AnnSQL
class to build an in-memory database. Generally, users shouldn't instantiate this class unless they pass their own database connection when instantiating the class.
BuildDb
Source code in src/AnnSQL/BuildDb.py
17 18 19 20 21 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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
|
__init__(conn=None, db_path=None, db_name=None, adata=None, create_all_indexes=False, create_basic_indexes=False, convenience_view=True, chunk_size=5000, make_buffer_file=False, print_output=True, layers=['X', 'obs', 'var', 'var_names', 'obsm', 'varm', 'obsp', 'uns'])
Initializes the BuildDb object. This object is used to create a database from an AnnData object byway of the MakeDb object.
Attributes:
Name | Type | Description |
---|---|---|
sql_reserved_keywords |
list
|
List of SQL reserved keywords. |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
conn
|
optional
|
Connection object to the database. |
None
|
db_path
|
optional
|
Path to the database file. |
None
|
db_name
|
optional
|
Name of the database. |
None
|
adata
|
optional
|
AnnData object. |
None
|
create_all_indexes
|
optional
|
Flag indicating whether to create all indexes. |
False
|
create_basic_indexes
|
optional
|
Flag indicating whether to create basic indexes. |
False
|
convenience_view
|
optional
|
Flag indicating whether to create a convenience view. |
True
|
chunk_size
|
optional
|
Size of the chunks for processing the data. |
5000
|
make_buffer_file
|
optional
|
Flag indicating whether to create a buffer file. |
False
|
print_output
|
optional
|
Flag indicating whether to print output. |
True
|
layers
|
optional
|
List of layers to include in the database. |
['X', 'obs', 'var', 'var_names', 'obsm', 'varm', 'obsp', 'uns']
|
Returns: None
Source code in src/AnnSQL/BuildDb.py
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 |
|
build()
Build the database tables for the AnnSQL object. This method creates and inserts data into the following tables: Tables:
X: Contains cell_id as VARCHAR and var_names_df columns as FLOAT.
obs: Contains the observation data.
var_names: Contains the gene names.
var: Contains the variable data.
obsm: Contains the observation matrix data.
varm: Contains the variable matrix data.
obsp: Contains the observation sparse matrix data.
The method also creates indexes on the tables based on the specified layers.
Returns: None
Source code in src/AnnSQL/BuildDb.py
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 |
|
build_uns_layer()
Builds the uns_raw table in the database and inserts the uns data. This method creates the uns_raw table in the database if it doesn't exist and inserts the uns data into the table. The uns data is a dictionary containing key-value pairs. The keys are stored in the 'key' column, the serialized values are stored in the 'value' column, and the data type of each value is stored in the 'data_type' column. If an error occurs during table creation or data insertion, the error message is printed to the console.
Returns: None
Source code in src/AnnSQL/BuildDb.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
determine_buffer_status()
Determines the buffer status based on the available memory.
If the total available memory is less than or equal to 20GB, a buffer is used
and building the database will take longer. To disable the buffer, set the
make_buffer_file
parameter to False
.
Returns: None
Source code in src/AnnSQL/BuildDb.py
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
|
make_json_serializable(value)
Converts a given value into a JSON serializable format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
any
|
The value to be converted. |
required |
Returns: JSON: The converted value in a JSON serializable format.
Source code in src/AnnSQL/BuildDb.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
|
replace_special_chars(string)
Replaces special characters in a string with underscores.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string
|
str
|
The input string to be processed. |
required |
Returns: str: The processed string with special characters replaced by underscores.
Source code in src/AnnSQL/BuildDb.py
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
|