This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Mutation, MAF, CPTAC-3

Hi friends How can I download mutation data from CPTAC for kidney cancer (ccRCC)? Is there any R-code for this?

cptac mutation

You can use the GenomiDataCommons package from Bioconductor. For example, in an old topic I found this:

install.packages("tidyverse")
library(tidyverse)
if (!require("BiocManager"))
    install.packages("BiocManager")
BiocManager::install('GenomicDataCommons')
library(GenomicDataCommons)

qfiles = files() %>% filter( ~ cases.project.project_id == 'CPTAC-3-kirc' &
                            type == 'mutation' &
                            access == "open" #&
                            #analysis.workflow_type == 'STAR - Counts'
                              )

My advice is to carefully read the documentation to adapt this script to your data and what you want to find. Alternatively, there is a Python library that you can find here: https://pypi.org/project/cptac/ where you can download your data. Use the reticulate package to convert data tables into data.frames in R.

0 answers

No answers yet.

Log in to answer this question.