Please use the devel version of the AnVIL Bioconductor
package.
The cBioPortal for Cancer Genomics website is a great resource for interactive exploration of study datasets. However, it does not easily allow the analyst to obtain and further analyze the data.
We’ve developed the cBioPortalData package to fill this
need to programmatically access the data resources available on the
cBioPortal.
The cBioPortalData package provides an R interface for
accessing the cBioPortal study data within the Bioconductor
ecosystem.
It downloads study data from the cBioPortal API (https://cbioportal.org/api) and uses Bioconductor infrastructure to cache and represent the data.
We use the MultiAssayExperiment
(@Ramos2017-er) package to integrate,
represent, and coordinate multiple experiments for the studies availble
in the cBioPortal. This package in conjunction with
curatedTCGAData give access to a large trove of publicly
available bioinformatic data. Please see our publication here (@Ramos2020-ya).
We demonstrate common use cases of cBioPortalData and
curatedTCGAData during Bioconductor conference workshops.
This vignette is for users / developers who would like to learn more
about the available data in cBioPortalData and to learn how
to hit other endpoints in the cBioPortal API implementation. The
functionality demonstrated here is used internally by the package to
create integrative representations of study datasets.
Note. To avoid overloading the API service, the API was designed to only query a part of the study data. Therefore, the user is required to enter either a set of genes of interest or a gene panel identifier.
Obtaining the cBioPortal API representation object
## service: cBioPortal
## host: www.cbioportal.org
## tags(); use cbioportal$<tab completion>:
## # A tibble: 65 × 3
## tag operation summary
## <chr> <chr> <chr>
## 1 Cancer Types getAllCancerTypesUsingGET Get all cance…
## 2 Cancer Types getCancerTypeUsingGET Get a cancer …
## 3 Clinical Attributes fetchClinicalAttributesUsingPOST Fetch clinica…
## 4 Clinical Attributes getAllClinicalAttributesInStudyUsingGET Get all clini…
## 5 Clinical Attributes getAllClinicalAttributesUsingGET Get all clini…
## 6 Clinical Attributes getClinicalAttributeInStudyUsingGET Get specified…
## 7 Clinical Data fetchAllClinicalDataInStudyUsingPOST Fetch clinica…
## 8 Clinical Data fetchClinicalDataUsingPOST Fetch clinica…
## 9 Clinical Data getAllClinicalDataInStudyUsingGET Get all clini…
## 10 Clinical Data getAllClinicalDataOfPatientInStudyUsingGET Get all clini…
## # ℹ 55 more rows
## tag values:
## Cancer Types, Clinical Attributes, Clinical Data, Copy Number
## Segments, Discrete Copy Number Alterations, Gene Panel Data, Gene
## Panels, Generic Assay Data, Generic Assays, Genes, Info, Molecular
## Data, Molecular Profiles, Mutations, Patients, Sample Lists, Samples,
## Server running status, Studies, Treatments
## schemas():
## AlleleSpecificCopyNumber, AlterationFilter,
## AndedPatientTreatmentFilters, AndedSampleTreatmentFilters,
## CancerStudy
## # ... with 62 more elements
Check available tags, operations, and descriptions as a
tibble:
## # A tibble: 65 × 3
## tag operation summary
## <chr> <chr> <chr>
## 1 Cancer Types getAllCancerTypesUsingGET Get all cance…
## 2 Cancer Types getCancerTypeUsingGET Get a cancer …
## 3 Clinical Attributes fetchClinicalAttributesUsingPOST Fetch clinica…
## 4 Clinical Attributes getAllClinicalAttributesInStudyUsingGET Get all clini…
## 5 Clinical Attributes getAllClinicalAttributesUsingGET Get all clini…
## 6 Clinical Attributes getClinicalAttributeInStudyUsingGET Get specified…
## 7 Clinical Data fetchAllClinicalDataInStudyUsingPOST Fetch clinica…
## 8 Clinical Data fetchClinicalDataUsingPOST Fetch clinica…
## 9 Clinical Data getAllClinicalDataInStudyUsingGET Get all clini…
## 10 Clinical Data getAllClinicalDataOfPatientInStudyUsingGET Get all clini…
## # ℹ 55 more rows
## [1] "getAllCancerTypesUsingGET"
## [2] "getCancerTypeUsingGET"
## [3] "fetchClinicalAttributesUsingPOST"
## [4] "getAllClinicalAttributesInStudyUsingGET"
## [5] "getAllClinicalAttributesUsingGET"
## [6] "getClinicalAttributeInStudyUsingGET"
## [1] "getAllClinicalAttributesUsingGET"
## [2] "fetchClinicalAttributesUsingPOST"
## [3] "fetchClinicalDataUsingPOST"
## [4] "getAllClinicalAttributesInStudyUsingGET"
## [5] "getClinicalAttributeInStudyUsingGET"
## [6] "getAllClinicalDataInStudyUsingGET"
## [7] "fetchAllClinicalDataInStudyUsingPOST"
## [8] "getAllClinicalDataOfPatientInStudyUsingGET"
## [9] "getAllClinicalDataOfSampleInStudyUsingGET"
Get the list of studies available:
## # A tibble: 516 × 13
## name description publicStudy pmid citation groups status importDate
## <chr> <chr> <lgl> <chr> <chr> <chr> <int> <chr>
## 1 Metastatic S… "Whole-exo… TRUE 2878… Robinso… "" 0 2024-12-0…
## 2 Stomach Aden… "TCGA Stom… TRUE <NA> <NA> "PUBL… 0 2025-06-1…
## 3 Colorectal C… "Whole-exo… TRUE 3288… Li et a… "PUBL… 0 2024-12-2…
## 4 MSK-IMPACT H… "Targeted … TRUE <NA> <NA> "" 0 2024-12-1…
## 5 Pancreatic A… "Whole-exo… TRUE 2310… Biankin… "" 0 2025-06-1…
## 6 Esophagogast… "Targeted … TRUE 3537… Smita e… "" 0 2024-12-0…
## 7 Cervical Squ… "Cervical … TRUE 2962… TCGA, C… "PUBL… 0 2024-12-2…
## 8 Chronic Lymp… "Mutation … TRUE 2620… Puente … "" 0 2024-12-2…
## 9 Osteosarcoma… "TARGET Os… TRUE <NA> <NA> "PUBL… 0 2025-08-2…
## 10 Myelodysplas… "Internati… TRUE <NA> Bernard… "PUBL… 0 2024-12-0…
## # ℹ 506 more rows
## # ℹ 5 more variables: allSampleCount <int>, readPermission <lgl>,
## # studyId <chr>, cancerTypeId <chr>, referenceGenome <chr>
Obtain the clinical data for a particular study:
## # A tibble: 92 × 85
## patientId AGE AJCC_PATHOLOGIC_TUMOR_STAGE ATYPICAL_MITOTIC_FIGURES
## <chr> <chr> <chr> <chr>
## 1 TCGA-OR-A5J1 58 Stage II Atypical Mitotic Figures Abse…
## 2 TCGA-OR-A5J2 44 Stage IV Atypical Mitotic Figures Pres…
## 3 TCGA-OR-A5J3 23 Stage III Atypical Mitotic Figures Abse…
## 4 TCGA-OR-A5J4 23 Stage IV Atypical Mitotic Figures Abse…
## 5 TCGA-OR-A5J5 30 Stage III Atypical Mitotic Figures Pres…
## 6 TCGA-OR-A5J6 29 Stage II Atypical Mitotic Figures Abse…
## 7 TCGA-OR-A5J7 30 Stage III Atypical Mitotic Figures Pres…
## 8 TCGA-OR-A5J8 66 Stage III Atypical Mitotic Figures Pres…
## 9 TCGA-OR-A5J9 22 Stage II Atypical Mitotic Figures Abse…
## 10 TCGA-OR-A5JA 53 Stage IV Atypical Mitotic Figures Pres…
## # ℹ 82 more rows
## # ℹ 81 more variables: CAPSULAR_INVASION <chr>, CLIN_M_STAGE <chr>,
## # CT_SCAN_PREOP_RESULTS <chr>,
## # CYTOPLASM_PRESENCE_LESS_THAN_EQUAL_25_PERCENT <chr>,
## # DAYS_TO_INITIAL_PATHOLOGIC_DIAGNOSIS <chr>, DFS_MONTHS <chr>,
## # DFS_STATUS <chr>, DIFFUSE_ARCHITECTURE <chr>, ETHNICITY <chr>,
## # FORM_COMPLETION_DATE <chr>, HISTOLOGICAL_DIAGNOSIS <chr>, …
A table of molecular profiles for a particular study can be obtained by running the following:
## [1] "acc_tcga_gistic"
## [2] "acc_tcga_linear_CNA"
## [3] "acc_tcga_methylation_hm450"
## [4] "acc_tcga_mutations"
## [5] "acc_tcga_rna_seq_v2_mrna"
## [6] "acc_tcga_rna_seq_v2_mrna_median_Zscores"
## [7] "acc_tcga_rna_seq_v2_mrna_median_all_sample_Zscores"
## [8] "acc_tcga_rppa"
## [9] "acc_tcga_rppa_Zscores"
The data for a molecular profile can be obtained with prior knowledge
of available entrezGeneIds:
molecularData(cbio, molecularProfileIds = "acc_tcga_rna_seq_v2_mrna",
entrezGeneIds = c(1, 2),
sampleIds = c("TCGA-OR-A5J1-01", "TCGA-OR-A5J2-01")
)## $acc_tcga_rna_seq_v2_mrna
## # A tibble: 4 × 8
## uniqueSampleKey uniquePatientKey entrezGeneId molecularProfileId sampleId
## <chr> <chr> <int> <chr> <chr>
## 1 VENHQS1PUi1BNUoxLTA… VENHQS1PUi1BNUo… 1 acc_tcga_rna_seq_… TCGA-OR…
## 2 VENHQS1PUi1BNUoxLTA… VENHQS1PUi1BNUo… 2 acc_tcga_rna_seq_… TCGA-OR…
## 3 VENHQS1PUi1BNUoyLTA… VENHQS1PUi1BNUo… 1 acc_tcga_rna_seq_… TCGA-OR…
## 4 VENHQS1PUi1BNUoyLTA… VENHQS1PUi1BNUo… 2 acc_tcga_rna_seq_… TCGA-OR…
## # ℹ 3 more variables: patientId <chr>, studyId <chr>, value <dbl>
A list of all the genes provided by the API service including hugo
symbols, and entrez gene IDs can be obtained by using the
geneTable function:
## # A tibble: 1,000 × 3
## entrezGeneId hugoGeneSymbol type
## <int> <chr> <chr>
## 1 -3930 ACACA_PS79 phosphoprotein
## 2 -3931 ACACB_PS79 phosphoprotein
## 3 -3965 AKT1S1_PT246 phosphoprotein
## 4 -3933 AKT1_PS473 phosphoprotein
## 5 -3936 AKT1_PT308 phosphoprotein
## 6 -3934 AKT2_PS473 phosphoprotein
## 7 -3937 AKT2_PT308 phosphoprotein
## 8 -3935 AKT3_PS473 phosphoprotein
## 9 -3938 AKT3_PT308 phosphoprotein
## 10 -3929 ARAF_PS299 phosphoprotein
## # ℹ 990 more rows
## # A tibble: 67 × 2
## description genePanelId
## <chr> <chr>
## 1 Targeted (129 genes) sequencing of cfDNA via MSK-ACCESS on Illum… ACCESS129
## 2 Targeted (27 cancer genes) sequencing of adenoid cystic carcinom… ACYC_FMI_27
## 3 ARCHER-HEME gene panel (199 genes) ARCHER-HEM…
## 4 ARCHER-SOLID Gene Panel (62 genes) ARCHER-SOL…
## 5 ARCHER-SOLID-CV4 Gene Panel (123 genes) ARCHER-SOL…
## 6 Targeted panel of 232 genes. Agilent
## 7 Targeted panel of 8 genes. AmpliSeq
## 8 Targeted panel of 509 genes. Bait_UCSF5…
## 9 DFCI-ONCOPANEL-1, Number of Genes - 304 DFCI-ONCOP…
## 10 DFCI-ONCOPANEL-2, Number of Genes - 326 DFCI-ONCOP…
## # ℹ 57 more rows
## # A tibble: 341 × 2
## entrezGeneId hugoGeneSymbol
## <int> <chr>
## 1 25 ABL1
## 2 84142 ABRAXAS1
## 3 207 AKT1
## 4 208 AKT2
## 5 10000 AKT3
## 6 238 ALK
## 7 242 ALOX12B
## 8 139285 AMER1
## 9 324 APC
## 10 367 AR
## # ℹ 331 more rows
gprppa <- genePanelMolecular(cbio,
molecularProfileId = "acc_tcga_rppa",
sampleListId = "acc_tcga_all")
gprppa## # A tibble: 92 × 7
## uniqueSampleKey uniquePatientKey molecularProfileId sampleId patientId
## <chr> <chr> <chr> <chr> <chr>
## 1 VENHQS1PUi1BNUoxLTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 2 VENHQS1PUi1BNUoyLTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 3 VENHQS1PUi1BNUozLTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 4 VENHQS1PUi1BNUo0LTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 5 VENHQS1PUi1BNUo1LTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 6 VENHQS1PUi1BNUo2LTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 7 VENHQS1PUi1BNUo3LTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 8 VENHQS1PUi1BNUo4LTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 9 VENHQS1PUi1BNUo5LTAxO… VENHQS1PUi1BNUo… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## 10 VENHQS1PUi1BNUpBLTAxO… VENHQS1PUi1BNUp… acc_tcga_rppa TCGA-OR… TCGA-OR-…
## # ℹ 82 more rows
## # ℹ 2 more variables: studyId <chr>, profiled <lgl>
getGenePanelMolecular(cbio,
molecularProfileIds = c("acc_tcga_rppa", "acc_tcga_gistic"),
sampleIds = allSamples(cbio, "acc_tcga")$sampleId
)## # A tibble: 184 × 7
## uniqueSampleKey uniquePatientKey molecularProfileId sampleId patientId
## <chr> <chr> <chr> <chr> <chr>
## 1 VENHQS1PUi1BNUoxLTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 2 VENHQS1PUi1BNUoyLTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 3 VENHQS1PUi1BNUozLTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 4 VENHQS1PUi1BNUo0LTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 5 VENHQS1PUi1BNUo1LTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 6 VENHQS1PUi1BNUo2LTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 7 VENHQS1PUi1BNUo3LTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 8 VENHQS1PUi1BNUo4LTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 9 VENHQS1PUi1BNUo5LTAxO… VENHQS1PUi1BNUo… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## 10 VENHQS1PUi1BNUpBLTAxO… VENHQS1PUi1BNUp… acc_tcga_gistic TCGA-OR… TCGA-OR-…
## # ℹ 174 more rows
## # ℹ 2 more variables: studyId <chr>, profiled <lgl>
getDataByGenes(cbio, "acc_tcga", genePanelId = "IMPACT341",
molecularProfileIds = "acc_tcga_rppa", sampleListId = "acc_tcga_rppa")## $acc_tcga_rppa
## # A tibble: 2,622 × 9
## uniqueSampleKey uniquePatientKey entrezGeneId molecularProfileId sampleId
## <chr> <chr> <int> <chr> <chr>
## 1 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 3667 acc_tcga_rppa TCGA-OR…
## 2 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 5604 acc_tcga_rppa TCGA-OR…
## 3 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 5594 acc_tcga_rppa TCGA-OR…
## 4 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 4893 acc_tcga_rppa TCGA-OR…
## 5 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 596 acc_tcga_rppa TCGA-OR…
## 6 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 598 acc_tcga_rppa TCGA-OR…
## 7 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 10018 acc_tcga_rppa TCGA-OR…
## 8 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 253260 acc_tcga_rppa TCGA-OR…
## 9 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 4088 acc_tcga_rppa TCGA-OR…
## 10 VENHQS1PUi1BNUoyLT… VENHQS1PUi1BNUo… 4089 acc_tcga_rppa TCGA-OR…
## # ℹ 2,612 more rows
## # ℹ 4 more variables: patientId <chr>, studyId <chr>, value <dbl>,
## # hugoGeneSymbol <chr>
It uses the getAllGenesUsingGET function from the
API.
To display all available sample list identifiers for a particular
study ID, one can use the sampleLists function:
## # A tibble: 9 × 5
## category name description sampleListId studyId
## <chr> <chr> <chr> <chr> <chr>
## 1 all_cases_with_mutation_and_cna_and_mr… Comp… Samples wi… acc_tcga_3w… acc_tc…
## 2 all_cases_in_study All … All sample… acc_tcga_all acc_tc…
## 3 all_cases_with_cna_data Samp… Samples wi… acc_tcga_cna acc_tc…
## 4 all_cases_with_mutation_and_cna_data Samp… Samples wi… acc_tcga_cn… acc_tc…
## 5 all_cases_with_methylation_data Samp… Samples wi… acc_tcga_me… acc_tc…
## 6 all_cases_with_methylation_data Samp… Samples wi… acc_tcga_me… acc_tc…
## 7 all_cases_with_mrna_rnaseq_data Samp… Samples wi… acc_tcga_rn… acc_tc…
## 8 all_cases_with_rppa_data Samp… Samples pr… acc_tcga_rp… acc_tc…
## 9 all_cases_with_mutation_data Samp… Samples wi… acc_tcga_se… acc_tc…
One can obtain the barcodes / identifiers for each sample using a specific sample list identifier, in this case we want all the copy number alteration samples:
## CharacterList of length 1
## [["acc_tcga_cna"]] TCGA-OR-A5J1-01 TCGA-OR-A5J2-01 ... TCGA-PK-A5HC-01
This returns a CharacterList of all identifiers for each
sample list identifier input:
## CharacterList of length 2
## [["acc_tcga_cna"]] TCGA-OR-A5J1-01 TCGA-OR-A5J2-01 ... TCGA-PK-A5HC-01
## [["acc_tcga_cnaseq"]] TCGA-OR-A5J1-01 TCGA-OR-A5J2-01 ... TCGA-PK-A5HC-01
## # A tibble: 92 × 6
## uniqueSampleKey uniquePatientKey sampleType sampleId patientId studyId
## <chr> <chr> <chr> <chr> <chr> <chr>
## 1 VENHQS1PUi1BNUoxLTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 2 VENHQS1PUi1BNUoyLTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 3 VENHQS1PUi1BNUozLTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 4 VENHQS1PUi1BNUo0LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 5 VENHQS1PUi1BNUo1LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 6 VENHQS1PUi1BNUo2LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 7 VENHQS1PUi1BNUo3LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 8 VENHQS1PUi1BNUo4LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 9 VENHQS1PUi1BNUo5LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 10 VENHQS1PUi1BNUpBLTAxO… VENHQS1PUi1BNUp… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## # ℹ 82 more rows
## # A tibble: 136 × 6
## uniqueSampleKey uniquePatientKey sampleType sampleId patientId studyId
## <chr> <chr> <chr> <chr> <chr> <chr>
## 1 VENHQS1PUi1BNUoyLTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 2 VENHQS1PUi1BNUozLTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 3 VENHQS1PUi1BNUo2LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 4 VENHQS1PUi1BNUo3LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 5 VENHQS1PUi1BNUo4LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 6 VENHQS1PUi1BNUo5LTAxO… VENHQS1PUi1BNUo… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 7 VENHQS1PUi1BNUpBLTAxO… VENHQS1PUi1BNUp… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 8 VENHQS1PUi1BNUpQLTAxO… VENHQS1PUi1BNUp… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 9 VENHQS1PUi1BNUpSLTAxO… VENHQS1PUi1BNUp… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## 10 VENHQS1PUi1BNUpTLTAxO… VENHQS1PUi1BNUp… Primary S… TCGA-OR… TCGA-OR-… acc_tc…
## # ℹ 126 more rows
The cBioPortal API representation is not limited to the
functions provided in the package. Users who wish to make use of any of
the endpoints provided by the API specification should use the dollar
sign $ function to access the endpoints.
First the user should see the input for a particular endpoint as detailed in the API:
## getGeneUsingGET
## Get a gene
##
## Parameters:
## geneId (string)
## Entrez Gene ID or Hugo Gene Symbol e.g. 1 or A1BG
Then the user can provide such input:
## Response [https://www.cbioportal.org/api/genes/BRCA1]
## Date: 2026-01-04 15:30
## Status: 200
## Content-Type: application/json
## Size: 69 B
which will require the user to ‘translate’ the response using
httr::content:
## $entrezGeneId
## [1] 672
##
## $hugoGeneSymbol
## [1] "BRCA1"
##
## $type
## [1] "protein-coding"
## R version 4.5.2 (2025-10-31)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.3 LTS
##
## Matrix products: default
## BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so; LAPACK version 3.12.0
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_US.UTF-8 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: Etc/UTC
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] jsonlite_2.0.0 survminer_0.5.1
## [3] ggpubr_0.6.2 ggplot2_4.0.1
## [5] survival_3.8-3 cBioPortalData_2.23.2
## [7] MultiAssayExperiment_1.37.2 SummarizedExperiment_1.41.0
## [9] Biobase_2.71.0 GenomicRanges_1.63.1
## [11] Seqinfo_1.1.0 IRanges_2.45.0
## [13] S4Vectors_0.49.0 BiocGenerics_0.57.0
## [15] generics_0.1.4 MatrixGenerics_1.23.0
## [17] matrixStats_1.5.0 AnVIL_1.23.6
## [19] AnVILBase_1.5.1 dplyr_1.1.4
## [21] BiocStyle_2.39.0
##
## loaded via a namespace (and not attached):
## [1] RColorBrewer_1.1-3 sys_3.4.3
## [3] magrittr_2.0.4 GenomicFeatures_1.63.1
## [5] farver_2.1.2 rmarkdown_2.30
## [7] BiocIO_1.21.0 vctrs_0.6.5
## [9] memoise_2.0.1 Rsamtools_2.27.0
## [11] RCurl_1.98-1.17 rstatix_0.7.3
## [13] htmltools_0.5.9 S4Arrays_1.11.1
## [15] BiocBaseUtils_1.13.0 lambda.r_1.2.4
## [17] curl_7.0.0 broom_1.0.11
## [19] Formula_1.2-5 SparseArray_1.11.10
## [21] sass_0.4.10 bslib_0.9.0
## [23] htmlwidgets_1.6.4 httr2_1.2.2
## [25] zoo_1.8-15 futile.options_1.0.1
## [27] cachem_1.1.0 commonmark_2.0.0
## [29] buildtools_1.0.0 GenomicAlignments_1.47.0
## [31] mime_0.13 lifecycle_1.0.4
## [33] pkgconfig_2.0.3 Matrix_1.7-4
## [35] R6_2.6.1 fastmap_1.2.0
## [37] shiny_1.12.1 digest_0.6.39
## [39] GCPtools_1.1.0 RaggedExperiment_1.35.0
## [41] AnnotationDbi_1.73.0 RSQLite_2.4.5
## [43] labeling_0.4.3 filelock_1.0.3
## [45] RTCGAToolbox_2.39.1 km.ci_0.5-6
## [47] RJSONIO_2.0.0 httr_1.4.7
## [49] abind_1.4-8 compiler_4.5.2
## [51] bit64_4.6.0-1 withr_3.0.2
## [53] backports_1.5.0 S7_0.2.1
## [55] BiocParallel_1.45.0 carData_3.0-5
## [57] DBI_1.2.3 ggsignif_0.6.4
## [59] rappdirs_0.3.3 DelayedArray_0.37.0
## [61] rjson_0.2.23 tools_4.5.2
## [63] otel_0.2.0 httpuv_1.6.16
## [65] glue_1.8.0 restfulr_0.0.16
## [67] promises_1.5.0 gridtext_0.1.5
## [69] grid_4.5.2 gtable_0.3.6
## [71] KMsurv_0.1-6 tzdb_0.5.0
## [73] tidyr_1.3.2 data.table_1.18.0
## [75] hms_1.1.4 car_3.1-3
## [77] xml2_1.5.1 utf8_1.2.6
## [79] XVector_0.51.0 markdown_2.0
## [81] pillar_1.11.1 stringr_1.6.0
## [83] later_1.4.4 splines_4.5.2
## [85] ggtext_0.1.2 BiocFileCache_3.1.0
## [87] lattice_0.22-7 rtracklayer_1.71.3
## [89] bit_4.6.0 tidyselect_1.2.1
## [91] maketools_1.3.2 Biostrings_2.79.3
## [93] miniUI_0.1.2 knitr_1.51
## [95] gridExtra_2.3 litedown_0.9
## [97] futile.logger_1.4.9 xfun_0.55
## [99] DT_0.34.0 stringi_1.8.7
## [101] UCSC.utils_1.7.1 yaml_2.3.12
## [103] evaluate_1.0.5 codetools_0.2-20
## [105] cigarillo_1.1.0 tibble_3.3.0
## [107] BiocManager_1.30.27 cli_3.6.5
## [109] xtable_1.8-4 jquerylib_0.1.4
## [111] survMisc_0.5.6 Rcpp_1.1.0.8.1
## [113] GenomeInfoDb_1.47.2 GenomicDataCommons_1.35.1
## [115] dbplyr_2.5.1 png_0.1-8
## [117] XML_3.99-0.20 rapiclient_0.1.8
## [119] parallel_4.5.2 TCGAutils_1.31.4
## [121] readr_2.1.6 blob_1.2.4
## [123] bitops_1.0-9 scales_1.4.0
## [125] purrr_1.2.0 crayon_1.5.3
## [127] rlang_1.1.6 KEGGREST_1.51.1
## [129] rvest_1.0.5 formatR_1.14