BRGEdata
includes a collection of BRGE omic and exposome data from the same cohort. The diferent objects guarantees a minimum of samples in common between all sets.
Data available in this R package:
| Data Type | Number of Samples | Number of Features | Technology | Object Name | Class |
| :------------ | ----------------: | -----------------: | :------------------------------ | :----------- | :---------------- |
| Exposome | 110 | 15 | | brge_expo
| ExposomeSet
|
| Transcriptome | 75 | 67528 | Affymetrix HTA 2.0 | brge_gexp
| ExpressionSet
|
| Methylome | 20 | 476946 | Illumina Human Methylation 450K | brge_methy
| GenomicRatioSet
|
| Proteome | 90 | 47 | | brge_prot
| ExpressionSet
|
sex
and age
was included as phenotipic data in each set. Moreover, the ExposomeSet
includes asthma status and rhinitis status of each sample.
To load the exposome data, stored in an ExposomeSet
, run the follow commands:
data("brge_expo", package = "BRGEdata") brge_expo
The summary of the data contained by brge_expo
:
| Data Type | Number of Samples | Number of Features | Technology | Object Name | Class |
| :------------ | ----------------: | -----------------: | :------------------------------ | :----------- | :---------------- |
| Exposome | 110 | 15 | | brge_expo
| ExposomeSet
|
To load the transcriptome data, saved in an ExpressionSet
, run the follow commands:
data("brge_gexp", package = "BRGEdata") brge_gexp
The summary of the data contained by brge_gexp
:
| Data Type | Number of Samples | Number of Features | Technology | Object Name | Class |
| :------------ | ----------------: | -----------------: | :------------------------------ | :----------- | :---------------- |
| Transcriptome | 75 | 67528 | Affymetrix HTA 2.0 | brge_gexp
| ExpressionSet
|
To load the methylation data, encapsulated in a GenomicRatioSet
, run the follow commands:
data("brge_methy", package = "BRGEdata") brge_methy
The summary of the data contained by brge_methy
:
| Data Type | Number of Samples | Number of Features | Technology | Object Name | Class |
| :------------ | ----------------: | -----------------: | :------------------------------ | :----------- | :---------------- |
| Methylome | 115 | 476946 | Illumina Human Methylation 450K | brge_methy
| GenomicRatioSet
|
To load the protein data, stored in an ExpressionSet
, run the follow commands:
data("brge_prot", package = "BRGEdata") brge_prot
The summary of the data contained by brge_prot
:
| Data Type | Number of Samples | Number of Features | Technology | Object Name | Class |
| :------------ | ----------------: | -----------------: | :------------------------------ | :----------- | :---------------- |
| Proteome | 90 | 47 | | brge_prot
| ExpressionSet
|
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.