Locus to Gene (L2G)
gentropy.l2g.LocusToGeneFeatureMatrixStep
¶
Annotate credible set with functional genomics features.
Source code in src/gentropy/l2g.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 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 |
|
__init__(session: Session, *, features_list: list[str], credible_set_path: str, variant_index_path: str | None = None, colocalisation_path: str | None = None, study_index_path: str | None = None, gene_index_path: str | None = None, feature_matrix_path: str) -> None
¶
Initialise the step and run the logic based on mode.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
Session
|
Session object that contains the Spark session |
required |
features_list
|
list[str]
|
List of features to use for the model |
required |
credible_set_path
|
str
|
Path to the credible set dataset necessary to build the feature matrix |
required |
variant_index_path
|
str | None
|
Path to the variant index dataset |
None
|
colocalisation_path
|
str | None
|
Path to the colocalisation dataset |
None
|
study_index_path
|
str | None
|
Path to the study index dataset |
None
|
gene_index_path
|
str | None
|
Path to the gene index dataset |
None
|
feature_matrix_path
|
str
|
Path to the L2G feature matrix output dataset |
required |
Source code in src/gentropy/l2g.py
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 |
|
gentropy.l2g.LocusToGeneStep
¶
Locus to gene step.
Source code in src/gentropy/l2g.py
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 |
|
__init__(session: Session, *, run_mode: str, features_list: list[str], hyperparameters: dict[str, Any], download_from_hub: bool, cross_validate: bool, wandb_run_name: str, credible_set_path: str, feature_matrix_path: str, model_path: str | None = None, gold_standard_curation_path: str | None = None, variant_index_path: str | None = None, gene_interactions_path: str | None = None, predictions_path: str | None = None, l2g_threshold: float | None = None, hf_hub_repo_id: str | None = None, hf_model_commit_message: str | None = 'chore: update model') -> None
¶
Initialise the step and run the logic based on mode.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
Session
|
Session object that contains the Spark session |
required |
run_mode
|
str
|
Run mode, either 'train' or 'predict' |
required |
features_list
|
list[str]
|
List of features to use for the model |
required |
hyperparameters
|
dict[str, Any]
|
Hyperparameters for the model |
required |
download_from_hub
|
bool
|
Whether to download the model from Hugging Face Hub |
required |
cross_validate
|
bool
|
Whether to run cross validation (5-fold by default) to train the model. |
required |
wandb_run_name
|
str
|
Name of the run to track model training in Weights and Biases |
required |
credible_set_path
|
str
|
Path to the credible set dataset necessary to build the feature matrix |
required |
feature_matrix_path
|
str
|
Path to the L2G feature matrix input dataset |
required |
model_path
|
str | None
|
Path to the model. It can be either in the filesystem or the name on the Hugging Face Hub (in the form of username/repo_name). |
None
|
gold_standard_curation_path
|
str | None
|
Path to the gold standard curation file |
None
|
variant_index_path
|
str | None
|
Path to the variant index |
None
|
gene_interactions_path
|
str | None
|
Path to the gene interactions dataset |
None
|
predictions_path
|
str | None
|
Path to the L2G predictions output dataset |
None
|
l2g_threshold
|
float | None
|
An optional threshold for the L2G score to filter predictions. A threshold of 0.05 is recommended. |
None
|
hf_hub_repo_id
|
str | None
|
Hugging Face Hub repository ID. If provided, the model will be uploaded to Hugging Face. |
None
|
hf_model_commit_message
|
str | None
|
Commit message when we upload the model to the Hugging Face Hub |
'chore: update model'
|
Raises:
Type | Description |
---|---|
ValueError
|
If run_mode is not 'train' or 'predict' |
Source code in src/gentropy/l2g.py
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 |
|
prepare_gold_standard() -> L2GGoldStandard
¶
Prepare the gold standard for training.
Returns:
Name | Type | Description |
---|---|---|
L2GGoldStandard |
L2GGoldStandard
|
training dataset. |
Raises:
Type | Description |
---|---|
ValueError
|
When gold standard path, is not provided, or when parsing OTG gold standard but missing interactions and variant index paths. |
TypeError
|
When gold standard is not OTG gold standard nor L2GGoldStandard. |
Source code in src/gentropy/l2g.py
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 |
|
run_predict() -> None
¶
Run the prediction step.
Raises:
Type | Description |
---|---|
ValueError
|
If predictions_path is not provided for prediction mode |
Source code in src/gentropy/l2g.py
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 |
|
run_train() -> None
¶
Run the training step.
Source code in src/gentropy/l2g.py
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 |
|
gentropy.l2g.LocusToGeneEvidenceStep
¶
Locus to gene evidence step.
Source code in src/gentropy/l2g.py
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 |
|
__init__(session: Session, locus_to_gene_predictions_path: str, credible_set_path: str, study_index_path: str, evidence_output_path: str, locus_to_gene_threshold: float) -> None
¶
Initialise the step and generate disease/target evidence.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
Session
|
Session object that contains the Spark session |
required |
locus_to_gene_predictions_path
|
str
|
Path to the L2G predictions dataset |
required |
credible_set_path
|
str
|
Path to the credible set dataset |
required |
study_index_path
|
str
|
Path to the study index dataset |
required |
evidence_output_path
|
str
|
Path to the L2G evidence output dataset. The output format is ndjson gzipped. |
required |
locus_to_gene_threshold
|
float
|
Threshold to consider a gene as a target. Defaults to 0.05. |
required |
Source code in src/gentropy/l2g.py
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 |
|
gentropy.l2g.LocusToGeneAssociationsStep
¶
Locus to gene associations step.
Source code in src/gentropy/l2g.py
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 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
|
__init__(session: Session, evidence_input_path: str, disease_index_path: str, direct_associations_output_path: str, indirect_associations_output_path: str) -> None
¶
Create direct and indirect association datasets.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
Session
|
Session object that contains the Spark session |
required |
evidence_input_path
|
str
|
Path to the L2G evidence input dataset |
required |
disease_index_path
|
str
|
Path to disease index file |
required |
direct_associations_output_path
|
str
|
Path to the direct associations output dataset |
required |
indirect_associations_output_path
|
str
|
Path to the indirect associations output dataset |
required |
Source code in src/gentropy/l2g.py
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 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
|