cBioPortalData

Integrate the cancer genomics portal, cBioPortal, using MultiAssayExperiment

https://github.com/waldronlab/cbioportaldata

Science Score: 36.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    1 of 13 committers (7.7%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.3%) to scientific vocabulary

Keywords

bioconductor-package nci-itcr u24ca289073

Keywords from Contributors

gene r01ca230551 genomics core-package proteomics grna-sequence mutations data-structure copynumber bioinformatics
Last synced: 9 months ago · JSON representation

Repository

Integrate the cancer genomics portal, cBioPortal, using MultiAssayExperiment

Basic Info
Statistics
  • Stars: 33
  • Watchers: 6
  • Forks: 13
  • Open Issues: 6
  • Releases: 1
Topics
bioconductor-package nci-itcr u24ca289073
Created about 9 years ago · Last pushed 11 months ago
Metadata Files
Readme Changelog

README.Rmd

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  cache = TRUE,
  out.width = "100%"
)
options(tibble.print_min = 5, tibble.print_max = 5)
library(BiocStyle)
```

# cBioPortalData


[![BioC status](http://www.bioconductor.org/shields/build/release/bioc/cBioPortalData.svg)](https://bioconductor.org/checkResults/release/bioc-LATEST/cBioPortalData)
[![Platforms](http://www.bioconductor.org/shields/availability/release/cBioPortalData.svg)](https://www.bioconductor.org/packages/release/bioc/html/cBioPortalData.html#archives)
[![Downloads](https://www.bioconductor.org/shields/downloads/release/cBioPortalData.svg)](https://bioconductor.org/packages/stats/bioc/cBioPortalData/)


## cBioPortal data and MultiAssayExperiment

### Overview

The `cBioPortalData` R package aims to import cBioPortal datasets as
`r Biocpkg("MultiAssayExperiment")` objects into Bioconductor. Some of the
features of the package include:

1. The use of the `MultiAssayExperiment` integrative container for coordinating
and representing the data.
2. The data container explicitly links all assays to the patient
clinical/pathological data.
3. With a [flexible API][1], `MultiAssayExperiment` provides harmonized
subsetting and reshaping into convenient wide and long formats.
4. The package provides datasets from both the API and the saved packaged data.
5. It also provides automatic local caching, thanks to
`r Biocpkg("BiocFileCache")`

[1]: https://github.com/waldronlab/MultiAssayExperiment/wiki/MultiAssayExperiment-API

## MultiAssayExperiment Cheatsheet





## Quick Start

### Installation

To install from Bioconductor (recommended for most users, this will install the
release or development version corresponding to your version of Bioconductor):

```{r,eval=FALSE}
if (!require("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("cBioPortalData")
```

Developers may want to install from GitHub for bleeding-edge updates (although
this is generally not necessary because changes here are also pushed to
[bioc-devel][2]). Note that developers must be working with the development
version of Bioconductor; see [bioc-devel][2] for details.

[2]: https://contributions.bioconductor.org/use-devel.html

```{r,eval=FALSE}
if (!require("cBioPortalData", quietly = TRUE))
    BiocManager::install("waldronlab/cBioPortalData")
```

To load the package:

```{r,include=TRUE,results="hide",message=FALSE,warning=FALSE}
library(cBioPortalData)
```

```{r,results="hide",include=FALSE}
cbio <- cBioPortal()
studies <- getStudies(cbio, buildReport = TRUE)
st <- studies
packpct <- round(prop.table(table(st$pack_build))[[2]], 2) * 100
apipct <- round(prop.table(table(st$api_build))[[2]], 2) * 100
```

## Note

`cBioPortalData` is a work in progress due to changes in data curation and
cBioPortal API specification. Users can view the `data(studiesTable)` dataset
to get an overview of the studies that are available and currently building
as `MultiAssayExperiment` representations. About `r apipct` % of the studies via
the API (`api_build`) and `r packpct` % of the package studies (`pack_build`)
are building, these include additional datasets that were not previously
available. Feel free to file an issue to request prioritization of fixing any
of the remaining datasets.

```{r,eval=FALSE}
cbio <- cBioPortal()
studies <- getStudies(cbio, buildReport = TRUE)
```

```{r}
table(studies$api_build)

table(studies$pack_build)
```

### API Service

Flexible and granular access to cBioPortal data from `cbioportal.org/api`.
This option is best used with a particular gene panel of interest. It allows
users to download sections of the data with molecular profile and gene panel
combinations within a study.

```{r,warning=FALSE,message=FALSE,include=TRUE,results="hide"}
gbm <- cBioPortalData(api = cbio, by = "hugoGeneSymbol", studyId = "gbm_tcga",
    genePanelId = "IMPACT341",
    molecularProfileIds = c("gbm_tcga_rppa", "gbm_tcga_mrna")
)
```

```{r}
gbm
```

### Packaged Data Service

This function will download a dataset from the `cbioportal.org/datasets`
website as a packaged tarball and serve it to users as a `MultiAssayExperiment`
object. This option is good for users who are interested in obtaining
all the data for a particular study.

```{r,warning=FALSE,message=FALSE,include=TRUE,results="hide"}
acc <- cBioDataPack("acc_tcga")
```

```{r}
acc
```

Owner

  • Name: Waldron Lab at the CUNY SPH
  • Login: waldronlab
  • Kind: organization
  • Email: Levi.Waldron@sph.cuny.edu
  • Location: New York, NY, USA

Software and educational materials from the Waldron lab for computational biostatistics at the CUNY SPH in New York City

GitHub Events

Total
  • Issues event: 11
  • Watch event: 3
  • Delete event: 2
  • Issue comment event: 14
  • Push event: 42
  • Fork event: 3
  • Create event: 4
Last Year
  • Issues event: 11
  • Watch event: 3
  • Delete event: 2
  • Issue comment event: 14
  • Push event: 42
  • Fork event: 3
  • Create event: 4

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 760
  • Total Committers: 13
  • Avg Commits per committer: 58.462
  • Development Distribution Score (DDS): 0.401
Past Year
  • Commits: 75
  • Committers: 6
  • Avg Commits per committer: 12.5
  • Development Distribution Score (DDS): 0.56
Top Committers
Name Email Commits
LiNk-NY m****9@g****m 455
LiNk-NY m****z@r****g 234
LiNk-NY m****s@r****g 28
🔧 Ino de Bruijn 🧬 i****o@i****o 12
Nitesh Turaga n****a@g****m 9
Levi Waldron l****h@g****m 5
J Wokaty j****y@s****u 4
Julien Cornebise j****n@c****m 3
kmezhoud k****d@g****m 3
LiNk-NY L****Y 3
J Wokaty j****y 2
lshep l****d@r****g 1
Andy Samedy a****1@g****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 9 months ago

All Time
  • Total issues: 6
  • Total pull requests: 0
  • Average time to close issues: 3 days
  • Average time to close pull requests: N/A
  • Total issue authors: 5
  • Total pull request authors: 0
  • Average comments per issue: 0.17
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 6
  • Pull requests: 0
  • Average time to close issues: 3 days
  • Average time to close pull requests: N/A
  • Issue authors: 5
  • Pull request authors: 0
  • Average comments per issue: 0.17
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • lwaldron (2)
  • krlong68 (1)
  • LiNk-NY (1)
  • grainneireland (1)
  • zhenqiang-su (1)
  • denoqo (1)
  • aaaaxiaoma (1)
  • shbrief (1)
Pull Request Authors
Top Labels
Issue Labels
enhancement (1)
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • bioconductor 30,924 total
  • Total dependent packages: 4
  • Total dependent repositories: 0
  • Total versions: 8
  • Total maintainers: 1
bioconductor.org: cBioPortalData

Exposes and Makes Available Data from the cBioPortal Web Resources

  • Versions: 8
  • Dependent Packages: 4
  • Dependent Repositories: 0
  • Downloads: 30,924 Total
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Stargazers count: 5.0%
Forks count: 5.7%
Average: 11.5%
Downloads: 46.7%
Maintainers (1)
Last synced: 9 months ago

Dependencies

inst/docker/environment.yml conda
  • bioconductor-cbioportaldata
  • r-base 4.1.*
  • r-devtools
DESCRIPTION cran
  • AnVIL >= 1.7.1 depends
  • MultiAssayExperiment * depends
  • R >= 4.2.0 depends
  • BiocFileCache >= 1.5.3 imports
  • GenomeInfoDb * imports
  • GenomicRanges * imports
  • IRanges * imports
  • RTCGAToolbox >= 2.19.7 imports
  • RaggedExperiment * imports
  • S4Vectors * imports
  • SummarizedExperiment * imports
  • TCGAutils >= 1.9.4 imports
  • digest * imports
  • dplyr * imports
  • httr * imports
  • methods * imports
  • readr * imports
  • stats * imports
  • tibble * imports
  • tidyr * imports
  • utils * imports
  • BiocStyle * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • survival * suggests
  • survminer * suggests
  • testthat * suggests
.github/workflows/devel_check_dock.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • docker/build-push-action v3 composite
  • docker/login-action v2 composite
.github/workflows/pr_check.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
.github/workflows/test_conda_build.yml actions
  • actions/checkout v3 composite
  • docker/build-push-action v2 composite
.github/workflows/update_api.yml actions
  • EndBug/add-and-commit v9 composite
  • actions/checkout v3 composite
  • ad-m/github-push-action master composite
inst/docker/Dockerfile docker
  • continuumio/miniconda3 latest build
inst/docker/pkg/Dockerfile docker
  • bioconductor/bioconductor_docker devel build