bioneuralnet.datasets¶
Built-in datasets for BioNeuralNet.
This module provides specific loader functions for each available multi-omics dataset.
Functions
Load the Breast Invasive Carcinoma (BRCA) dataset. |
|
Load the synthetic Example dataset. |
|
Load the Pan-kidney (KIPAN) dataset. |
|
|
Load the Brain Lower Grade Glioma dataset. |
Load the synthetic MONET dataset. |
Classes
|
Load a pre-packaged multi-omics dataset from the package. |
- class bioneuralnet.datasets.DatasetLoader(dataset_name: str)[source]¶
Bases:
objectLoad a pre-packaged multi-omics dataset from the package.
Options for ‘dataset_name’:
“example”: Synthetic example. “monet”: Synthetic example. “brca”: Breast invasive carcinoma. “lgg”: Brain Lower Grade Glioma. “kipan”: Pan-kidney carcinoma.
- Parameters:
- bioneuralnet.datasets.load_brca() dict[source]¶
Load the Breast Invasive Carcinoma (BRCA) dataset.
- Returns:
Keys include ‘mirna’, ‘target’, ‘clinical’, ‘rna’, ‘methylation’.
- Return type:
- bioneuralnet.datasets.load_example() dict[source]¶
Load the synthetic Example dataset.
- Returns:
Keys include ‘X1’, ‘X2’, ‘Y’, ‘clinical’.
- Return type:
- bioneuralnet.datasets.load_kipan() dict[source]¶
Load the Pan-kidney (KIPAN) dataset.
- Returns:
Keys include ‘mirna’, ‘target’, ‘clinical’, ‘rna’, ‘methylation’.
- Return type:
- bioneuralnet.datasets.load_lgg() dict[source]¶
Load the Brain Lower Grade Glioma dataset.
- Returns:
Keys include ‘mirna’, ‘target’, ‘clinical’, ‘rna’, ‘methylation’.
- Return type:
- bioneuralnet.datasets.load_monet() dict[source]¶
Load the synthetic MONET dataset.
- Returns:
Keys include ‘gene’, ‘mirna’, ‘phenotype’, ‘rppa’, ‘clinical’.
- Return type:
Modules