CTdata 1.0.2
CTdata
is the companion Package for CTexploreR
and provides omics
data to select and characterise cancer testis genes. Data come from
public databases and include expression and methylation values of
genes in normal and tumor samples as well as in tumor cell lines, and
expression in cells treated with a demethylating agent is also
available.
The data are served through the ExperimentHub
infrastructure, which
allows download them only once and cache them for further
use. Currently available data are summarised in the table below and
details in the next section.
library("CTdata")
DT::datatable(CTdata())
To install the package:
if (!require("BiocManager"))
install.packages("CTdata")
BiocManager::install("CTdata")
To install the package from GitHub:
if (!require("BiocManager"))
install.packages("BiocManager")
BiocManager::install("UCLouvain-CBIO/CTdata")
For details about each data, see their respective manual pages.
A SummarizedExperiment
object with gene expression data in normal
tissues from GTEx database:
library("SummarizedExperiment")
GTEX_data()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 24359 32
## metadata(0):
## assays(1): TPM
## rownames(24359): ENSG00000243485 ENSG00000237613 ... ENSG00000198695
## ENSG00000198727
## rowData names(3): external_gene_name GTEX_category max_TPM_somatic
## colnames(32): Testis Ovary ... Uterus Vagina
## colData names(0):
A SummarizedExperiment
object with gene expression data in cancer
cell lines from CCLE:
CCLE_data()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 24327 1229
## metadata(0):
## assays(1): TPM
## rownames(24327): ENSG00000000003 ENSG00000000005 ... ENSG00000284543
## ENSG00000284546
## rowData names(5): external_gene_name
## percent_of_positive_CCLE_cell_lines
## percent_of_negative_CCLE_cell_lines max_TPM_in_CCLE CCLE_category
## colnames(1229): LC1SQSF COLO794 ... ECC2 A673
## colData names(30): DepMap_ID cell_line_name ... Cellosaurus_issues type
A SummarizedExperiment
object with gene expression values in normal
tissues with or without allowing multimapping:
normal_tissues_multimapping_data()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 24359 18
## metadata(0):
## assays(2): TPM_no_multimapping TPM_with_multimapping
## rownames(24359): ENSG00000000003 ENSG00000000005 ... ENSG00000284543
## ENSG00000284546
## rowData names(3): external_gene_name lowly_expressed_in_GTEX
## multimapping_analysis
## colnames(18): adrenal_gland breast_epithelium ... transverse_colon
## upper_lobe_of_left_lung
## colData names(0):
A SummarizedExperiment
object containing genes differential
expression analysis (with RNAseq expression values) in cell lines
treated or not with a demethylating agent (5-Aza-2’-Deoxycytidine).
DAC_treated_cells()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 24359 32
## metadata(0):
## assays(1): log1p
## rownames(24359): ENSG00000243485 ENSG00000237613 ... ENSG00000198695
## ENSG00000198727
## rowData names(18): external_gene_name logFC_B2-1 ... padj_TS603 induced
## colnames(32): B2-1_CTL_rep1 B2-1_CTL_rep2 ... TS603_DAC_rep1
## TS603_DAC_rep2
## colData names(9): ref cell ... library lab
As above, with multimapping:
DAC_treated_cells_multimapping()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 24359 32
## metadata(0):
## assays(1): log1p
## rownames(24359): ENSG00000243485 ENSG00000237613 ... ENSG00000198695
## ENSG00000198727
## rowData names(18): external_gene_name logFC_B2-1 ... padj_TS603 induced
## colnames(32): B2-1_CTL_rep1 B2-1_CTL_rep2 ... TS603_DAC_rep1
## TS603_DAC_rep2
## colData names(9): ref cell ... library lab
A SummarizedExperiment
with gene expression data in TCGA samples
(tumor and peritumoral samples : SKCM, LUAD, LUSC, COAD, ESCA, BRCA
and HNSC):
TCGA_TPM()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 24350 4141
## metadata(0):
## assays(1): TPM
## rownames(24350): ENSG00000000003 ENSG00000000005 ... ENSG00000284543
## ENSG00000284546
## rowData names(19): external_gene_name percent_pos_SKCM ...
## max_TPM_in_TCGA TCGA_category
## colnames(4141): TCGA-EB-A5SF-01A-11R-A311-07
## TCGA-EE-A3J8-06A-11R-A20F-07 ... TCGA-CV-6935-11A-01R-1915-07
## TCGA-CV-7183-01A-11R-2016-07
## colData names(65): patient sample ... CD8_T_cells proliferation_score
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
With the datasets above, we generated a list of 307 CT genes (see figure below for details).
We uses multimapping because many CT genes belong to gene families from which members have identical or nearly identical sequences. This is likely the reason why these genes are not detected in GTEx database, as GTEx processing pipeline specifies that overlapping intervals between genes are excluded from all genes for counting. Some CT genes can thus only be detected in RNAseq data in which multimapping reads are not discarded.
A RangedSummarizedExperiment
containing methylation of CpGs located
within CT promoters in normal tissues:
CT_methylation_in_tissues()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: RangedSummarizedExperiment
## dim: 53770 14
## metadata(0):
## assays(1): ''
## rownames(53770): 1 2 ... 53769 53770
## rowData names(0):
## colnames(14): adipose colon ... thyroid sperm
## colData names(0):
A SummarizedExperiment
with Cancer-Testis genes’ promoters mean
methylation in normal tissues:
CT_mean_methylation_in_tissues()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: SummarizedExperiment
## dim: 307 14
## metadata(0):
## assays(1): ''
## rownames(307): TTLL10 TAS1R1 ... RBMY1F RBMY1J
## rowData names(7): ensembl_gene_id CpG_density ... somatic_methylation
## germline_methylation
## colnames(14): adipose colon ... thyroid sperm
## colData names(0):
A SummarizedExperiment
with gene expression data in TCGA samples
(tumor and peritumoral samples : SKCM, LUAD, LUSC, COAD, ESCA, BRCA
and HNSC):
TCGA_CT_methylation()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## class: RangedSummarizedExperiment
## dim: 692 3423
## metadata(0):
## assays(1): methylation
## rownames(692): cg26578072 cg27631599 ... cg16626452 cg22051787
## rowData names(52): address_A address_B ... MASK_extBase MASK_general
## colnames(3423): TCGA-ER-A42L-06A-11D-A24V-05
## TCGA-WE-A8K1-06A-21D-A373-05 ... TCGA-BB-A6UO-01A-12D-A34K-05
## TCGA-IQ-A61O-01A-11D-A30F-05
## colData names(3): samples sample project_id
A matrix
with gene expression correlations in CCLE cancer cell lines:
dim(CCLE_correlation_matrix())
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## [1] 307 24327
CCLE_correlation_matrix()[1:10, 1:5]
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## ENSG00000000003 ENSG00000000005 ENSG00000000419 ENSG00000000457
## ENSG00000162571 0.103434061 0.001049710 -0.042549895 0.14462034
## ENSG00000173662 -0.071928957 -0.023465128 -0.072986999 0.08297871
## ENSG00000215910 -0.210675466 -0.049330533 -0.144187891 0.21496443
## ENSG00000157330 -0.009096577 -0.012775872 -0.013617443 0.01686471
## ENSG00000234593 -0.042559061 -0.022602098 -0.001087715 -0.03065048
## ENSG00000117148 -0.027897133 0.031152498 0.012210680 0.08032635
## ENSG00000131914 0.098018050 0.062352652 0.046643780 0.05024423
## ENSG00000142698 -0.009432254 -0.014082458 0.007391337 0.02454294
## ENSG00000143006 0.018450551 -0.005250837 -0.052121771 0.01223201
## ENSG00000237853 -0.138887798 -0.012717974 -0.037329853 0.05698454
## ENSG00000000460
## ENSG00000162571 0.051584992
## ENSG00000173662 0.054997238
## ENSG00000215910 0.033675129
## ENSG00000157330 -0.041359090
## ENSG00000234593 -0.014316867
## ENSG00000117148 0.081165649
## ENSG00000131914 0.032435630
## ENSG00000142698 0.008474658
## ENSG00000143006 -0.006112485
## ENSG00000237853 0.005744308
A tibble
with Cancer-Testis (CT) genes and their characteristics:
CT_genes()
## see ?CTdata and browseVignettes('CTdata') for documentation
## loading from cache
## # A tibble: 307 × 34
## ensembl_gene_id external_gene_name family chr strand transcription_start_…¹
## <chr> <chr> <chr> <chr> <int> <int>
## 1 ENSG00000162571 TTLL10 <NA> 1 1 1173880
## 2 ENSG00000173662 TAS1R1 <NA> 1 1 6555307
## 3 ENSG00000215910 C1orf167 <NA> 1 1 11762193
## 4 ENSG00000157330 CFAP107 <NA> 1 1 12746200
## 5 ENSG00000234593 KAZN-AS1 <NA> 1 -1 14419973
## 6 ENSG00000117148 ACTL8 <NA> 1 1 17755333
## 7 ENSG00000131914 LIN28A <NA> 1 1 26410817
## 8 ENSG00000142698 C1orf94 <NA> 1 1 34176907
## 9 ENSG00000143006 DMRTB1 <NA> 1 1 53459399
## 10 ENSG00000237853 NFIA-AS1 <NA> 1 -1 61253510
## # ℹ 297 more rows
## # ℹ abbreviated name: ¹transcription_start_site
## # ℹ 28 more variables: X_linked <lgl>, TPM_testis <dbl>, max_TPM_somatic <dbl>,
## # GTEX_category <chr>, lowly_expressed_in_GTEX <lgl>,
## # multimapping_analysis <chr>, testis_specificity <chr>,
## # percent_of_positive_CCLE_cell_lines <dbl>,
## # percent_of_negative_CCLE_cell_lines <dbl>, max_TPM_in_CCLE <dbl>, …
## R version 4.3.0 RC (2023-04-13 r84269)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.2 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.17-bioc/R/lib/libRblas.so
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_GB LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## time zone: America/New_York
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] SummarizedExperiment_1.30.2 Biobase_2.60.0
## [3] GenomicRanges_1.52.0 GenomeInfoDb_1.36.0
## [5] IRanges_2.34.0 S4Vectors_0.38.1
## [7] BiocGenerics_0.46.0 MatrixGenerics_1.12.2
## [9] matrixStats_1.0.0 CTdata_1.0.2
## [11] BiocStyle_2.28.0
##
## loaded via a namespace (and not attached):
## [1] tidyselect_1.2.0 dplyr_1.1.2
## [3] blob_1.2.4 filelock_1.0.2
## [5] Biostrings_2.68.1 bitops_1.0-7
## [7] fastmap_1.1.1 RCurl_1.98-1.12
## [9] BiocFileCache_2.8.0 promises_1.2.0.1
## [11] digest_0.6.31 mime_0.12
## [13] lifecycle_1.0.3 ellipsis_0.3.2
## [15] KEGGREST_1.40.0 interactiveDisplayBase_1.38.0
## [17] RSQLite_2.3.1 magrittr_2.0.3
## [19] compiler_4.3.0 rlang_1.1.1
## [21] sass_0.4.6 tools_4.3.0
## [23] utf8_1.2.3 yaml_2.3.7
## [25] knitr_1.43 S4Arrays_1.0.4
## [27] htmlwidgets_1.6.2 bit_4.0.5
## [29] curl_5.0.1 DelayedArray_0.26.3
## [31] withr_2.5.0 purrr_1.0.1
## [33] grid_4.3.0 fansi_1.0.4
## [35] ExperimentHub_2.8.0 xtable_1.8-4
## [37] cli_3.6.1 rmarkdown_2.22
## [39] crayon_1.5.2 generics_0.1.3
## [41] httr_1.4.6 DBI_1.1.3
## [43] cachem_1.0.8 zlibbioc_1.46.0
## [45] AnnotationDbi_1.62.1 BiocManager_1.30.21
## [47] XVector_0.40.0 vctrs_0.6.3
## [49] Matrix_1.5-4.1 jsonlite_1.8.5
## [51] bookdown_0.34 bit64_4.0.5
## [53] crosstalk_1.2.0 jquerylib_0.1.4
## [55] glue_1.6.2 DT_0.28
## [57] BiocVersion_3.17.1 later_1.3.1
## [59] tibble_3.2.1 pillar_1.9.0
## [61] rappdirs_0.3.3 htmltools_0.5.5
## [63] GenomeInfoDbData_1.2.10 R6_2.5.1
## [65] dbplyr_2.3.2 evaluate_0.21
## [67] shiny_1.7.4 lattice_0.21-8
## [69] highr_0.10 AnnotationHub_3.8.0
## [71] png_0.1-8 memoise_2.0.1
## [73] httpuv_1.6.11 bslib_0.5.0
## [75] Rcpp_1.0.10 xfun_0.39
## [77] pkgconfig_2.0.3