sake ¶
Sake Request package.
A set of utils tools to interogate Seqoia dAta laKE
Modules:
-
duckdb_query
–A map that associate query name to duckdb sql query.
-
obj
–Define Sake dataclass, main API of sake_request.
-
utils
–Some utils function.
Classes:
-
Sake
–Class that help user to extract variants from sake.
Sake dataclass
¶
Sake(
*,
sake_path: Path,
preindication: str,
threads: int | None = cpu_count(),
activate_tqdm: bool | None = False,
aggregations_path: Path | None = None,
annotations_path: Path | None = None,
cnv_path: Path | None = None,
partitions_path: Path | None = None,
prescriptions_path: Path | None = None,
samples_path: Path | None = None,
str_path: Path | None = None,
transmissions_path: Path | None = None,
variants_path: Path | None = None,
genotype_columns: list[str] | None = None,
)
Class that help user to extract variants from sake.
Methods:
-
add_annotations
–Add annotations to variants.
-
add_genotypes
–Add genotype information to variants DataFrame.
-
add_sample_info
–Add sample information.
-
add_transmissions
–Add transmissions information.
-
add_variants
–Use id of column polars.DataFrame to get variant information.
-
all_variants
–Get all variants of a target in present in Sake.
-
get_annotations
–Get all variants of an annotations.
-
get_cnv
–Get cnv from chromosome between start and stop.
-
get_cnv_by_sample
–Get cnv by sample.
-
get_interval
–Get variants from chromosome between start and stop.
-
get_intervals
–Get variants in multiple intervals.
-
get_variant_of_prescription
–Get all variants of a prescription.
-
get_variant_of_prescriptions
–Get all variants of multiple prescriptions.
add_annotations ¶
add_annotations(
variants: DataFrame,
name: str,
version: str,
*,
rename_column: bool = True,
select_columns: list[str] | None = None,
read_threads: int = 1,
) -> DataFrame
Add annotations to variants.
Require id
column in variants value.
Parameters:
-
variants
(DataFrame
) –DataFrame you wish to annotate
-
name
(str
) –Name of annotations you want add to your variants
-
version
(str
) –version of annotations you want add to your variants
-
rename_column
(bool
, default:True
) –prefix annotations column name with annotations name
-
select_columns
(list[str] | None
, default:None
) –name of annotations column (same as is in annotations file) you want add to your DataFrame, if None all column are added
Return
DataFrame with annotations column.
Source code in src/sake/obj.py
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 |
|
add_genotypes ¶
add_genotypes(
variants: DataFrame,
*,
keep_id_part: bool = False,
select_columns: list[str] | None = None,
number_of_bits: int = 8,
read_threads: int = 1,
) -> DataFrame
Add genotype information to variants DataFrame.
Require id
column in variants value.
Parameters:
-
variants
(DataFrame
) –DataFrame you wish to add genotypes
-
keep_id_part
(bool
, default:False
) –method add id_part column, set to True to keep_it
-
select_columns
(list[str] | None
, default:None
) –name of genotype column you want add to your DataFrame, if None all column are added
-
number_of_bits
(int
, default:8
) –number of bits use to compute partitions
-
read_threads
(int
, default:1
) –number of partitions file read in parallel
Return
DataFrame with genotype information.
Source code in src/sake/obj.py
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 |
|
add_sample_info ¶
add_sample_info(
_variants: DataFrame,
*,
select_columns: list[str] | None = None,
) -> DataFrame
Add sample information.
Required sample column in polars.DataFrame.
Parameters:
-
_variants
(DataFrame
) –DataFrame you wish to add sample information
-
select_columns
(list[str] | None
, default:None
) –name of sample information column you want add to your DataFrame, if None all column are added
Return
DataFrame with sample information.
Source code in src/sake/obj.py
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 |
|
add_transmissions ¶
add_transmissions(
variants: DataFrame,
*,
select_columns: list[str] | None = None,
read_threads: int = 1,
) -> DataFrame
Add transmissions information.
Required pid_crc column in polars.DataFrame.
Parameters:
-
variants
(DataFrame
) –DataFrame you wish to add genotypes
-
select_columns
(list[str] | None
, default:None
) –name of transmissions column you want add to your DataFrame, if None all column are added
-
read_threads
(int
, default:1
) –number of partitions file read in parallel
Return
DataFrame with genotype information.
Source code in src/sake/obj.py
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 |
|
add_variants ¶
add_variants(_data: DataFrame) -> DataFrame
Use id of column polars.DataFrame to get variant information.
Source code in src/sake/obj.py
344 345 346 |
|
all_variants ¶
all_variants() -> DataFrame
Get all variants of a target in present in Sake.
Source code in src/sake/obj.py
348 349 350 |
|
get_annotations ¶
get_annotations(
name: str,
version: str,
*,
rename_column: bool = True,
select_columns: list[str] | None = None,
) -> DataFrame | None
Get all variants of an annotations.
Parameters:
-
name
(str
) –Name of annotations you want add to your variants
-
version
(str
) –version of annotations you want add to your variants
-
rename_column
(bool
, default:True
) –prefix annotations column name with annotations name
-
select_columns
(list[str] | None
, default:None
) –name of annotations column (same as is in annotations file) you want add to your DataFrame, if None all column are added
Return
DataFrame with annotations column.
Source code in src/sake/obj.py
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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
|
get_cnv ¶
get_cnv(
chrom: str,
start: int,
stop: int,
tools: str,
sv_type: str,
*,
exact: bool = True,
) -> DataFrame
Get cnv from chromosome between start and stop.
Source code in src/sake/obj.py
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
|
get_cnv_by_sample ¶
get_cnv_by_sample(sample: str, tools: str) -> DataFrame
Get cnv by sample.
Source code in src/sake/obj.py
449 450 451 |
|
get_interval ¶
get_interval(
chrom: str, start: int, stop: int
) -> DataFrame
Get variants from chromosome between start and stop.
Source code in src/sake/obj.py
453 454 455 456 457 458 459 460 461 462 463 |
|
get_intervals ¶
get_intervals(
chroms: list[str], starts: list[int], stops: list[int]
) -> DataFrame
Get variants in multiple intervals.
Source code in src/sake/obj.py
465 466 467 468 469 470 471 472 473 474 475 476 |
|
get_variant_of_prescription ¶
get_variant_of_prescription(prescription: str) -> DataFrame
Get all variants of a prescription.
Source code in src/sake/obj.py
478 479 480 481 482 483 484 485 486 487 488 |
|
get_variant_of_prescriptions ¶
get_variant_of_prescriptions(
prescriptions: list[str],
) -> DataFrame
Get all variants of multiple prescriptions.
Source code in src/sake/obj.py
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
|