Datasets:
The dataset viewer should be available soon. Please retry later.
Breast Cancer Gene Expression DMFS Dataset
Dataset Summary
This dataset is derived from public breast cancer gene-expression datasets distributed through Bioconductor and used in the genefu breast cancer analysis framework.
The original data and processing workflow are documented in the Bioconductor genefu vignette:
https://www.bioconductor.org/packages/devel/bioc/vignettes/genefu/inst/doc/genefu.html
The raw data are not distributed as standalone CSV files. Instead, they are programmatically accessed through Bioconductor experimental data packages and processed in R before being exported and further processed in Python.
This Hugging Face repository organizes the data into two levels:
- Intermediate Data: CSV files exported from the initial R/Bioconductor processing step.
- Processed Data: model-ready train, validation, and test splits generated in Python.
- Processed Data Subset: subset of the processed rain, validation, and test splits generated in Python. These have a reduced feature space and are for display only.
The prediction task is binary classification of distant metastasis-free survival (DMFS) event status using gene-expression features.
Source
This dataset is derived from publicly available breast cancer gene-expression cohorts distributed via Bioconductor and accessed using the genefu framework.
For full details on the original data sources and preprocessing pipeline, refer to the genefu website provided above.
The underlying cohorts include datasets such as:
- MAINZ
- TRANSBIG
These datasets are combined and processed using Bioconductor tools including genefu and Biobase.
Users are encouraged to consult the original source for detailed documentation of cohort composition, biological context, and preprocessing methodology.
Initial R Processing (Bioconductor)
The intermediate data provided in this repository are generated using an R-based preprocessing pipeline.
Key steps include:
- Loading required libraries:
genefuBiobase- Bioconductor breast cancer datasets
- Loading datasets:
breastCancerMAINZbreastCancerTRANSBIG
- Removing phenotype columns in MAINZ that are entirely missing
- Combining datasets using
Biobase::combine - Extracting:
- Phenotype data via
pData - Gene-expression data via
exprs
- Phenotype data via
- Filtering samples with available DMFS information:
- Non-missing
t.dmfs - Non-missing
e.dmfs
- Non-missing
- Transposing the expression matrix so rows correspond to samples
- Constructing a cohort table with:
sample_idt_dmfse_dmfsdmfs_label
Label Definition
The binary classification label is defined as:
dmfs_label = 1ife_dmfs == 1dmfs_label = 0otherwise
Repository Structure
BC/
βββ intermediate_data/
β βββ cohort.csv
β βββ dataset.csv
β
βββ processed_data/
β βββ train.csv
β βββ validation.csv
β βββ test.csv
β
βββ processed_data_subset/
β βββ train.csv
β βββ validation.csv
β βββ test.csv
β
βββ README.md
- Downloads last month
- 46