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,
chrom_basename: str | None = None,
) -> 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
-
chrom_basename
(str | None
, default:None
) –basename of annotation filename use to detect format annotation file directory struct. If value is not set, function try to detect it automagicly.
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 161 162 163 164 165 166 167 168 |
|
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
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 |
|
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
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 |
|
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
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 |
|
add_variants ¶
add_variants(_data: DataFrame) -> DataFrame
Use id of column polars.DataFrame to get variant information.
Source code in src/sake/obj.py
352 353 354 |
|
all_variants ¶
all_variants() -> DataFrame
Get all variants of a target in present in Sake.
Source code in src/sake/obj.py
356 357 358 |
|
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
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 425 426 427 428 429 430 431 432 |
|
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
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 |
|
get_cnv_by_sample ¶
get_cnv_by_sample(sample: str, tools: str) -> DataFrame
Get cnv by sample.
Source code in src/sake/obj.py
457 458 459 |
|
get_interval ¶
get_interval(
chrom: str,
start: int,
stop: int,
comment: IntoExpr | None = None,
) -> DataFrame
Get variants from chromosome between start and stop.
Source code in src/sake/obj.py
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
|
get_intervals ¶
get_intervals(
chroms: list[str],
starts: list[int],
stops: list[int],
comments: list[IntoExpr] | None = None,
) -> DataFrame
Get variants in multiple intervals.
Source code in src/sake/obj.py
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 |
|
get_variant_of_prescription ¶
get_variant_of_prescription(prescription: str) -> DataFrame
Get all variants of a prescription.
Source code in src/sake/obj.py
517 518 519 520 521 522 523 524 525 526 527 |
|
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
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
|
utils ¶
Some utils function.
Functions:
-
add_id_part
–Compute and add id_part of polars.DataFrame.
-
add_recurrence
–Compute recurrence of variant.
-
get_list
–Replace list by value at index or null_value if index is out of bound.
-
list2string
–Convert list in string.
add_id_part ¶
add_id_part(
data: DataFrame, number_of_bits: int = 8
) -> DataFrame
Compute and add id_part of polars.DataFrame.
Source code in src/sake/utils.py
16 17 18 19 20 21 22 23 24 25 26 27 |
|
add_recurrence ¶
add_recurrence(data: DataFrame) -> DataFrame
Compute recurrence of variant.
Requirement: - id: variant id - gt: genotype - sample: id of sample associate to genotype
Parameters:
-
data
(DataFrame
) –polars.DataFrame where compute recurrence.
Return
data with sake_AC et sake_nhomalt columns.
Source code in src/sake/utils.py
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 |
|
get_list ¶
get_list(
data: DataFrame,
columns: list[str],
*,
index: int = 0,
null_value: Any = 0,
) -> DataFrame
Replace list by value at index or null_value if index is out of bound.
Parameters:
-
data
(DataFrame
) –polars.DataFrame with list columns from which value is to be extracted
-
columns
(list[str]
) –List of columns containing a list from which a value is to be extracted
-
index
(int
, default:0
) –index of list you want extract
-
null_value
(Any
, default:0
) –value set if index is out of list
Source code in src/sake/utils.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
list2string ¶
list2string(
data: DataFrame,
*,
columns: list[str],
separator: str = ",",
) -> DataFrame
Convert list in string.
Source code in src/sake/utils.py
57 58 59 60 61 |
|