TCGA RNAseq
0
0
Entering edit mode
18 months ago
Rob ▴ 170

Hi all,

I used the following code to download the TCGA RNAseq data. This includes all genes. I want only protein-coding genes. Is there any code to filter for only coding genes? Thanks

query <- GDCquery(
    project = "TCGA-KIRC",
    data.category = "Transcriptome Profiling",
    data.type = "Gene Expression Quantification",
    experimental.strategy = "RNA-Seq",
    sample.type = "Primary Tumor", 
    workflow.type = "STAR - Counts")

GDCdownload(query, method = "api" )

#prepare data 
data_TCGA_STAR_KIRC <- GDCprepare(query)

########

# generate count matrix
rna_STAR <- as.data.frame(SummarizedExperiment::assay(data_TCGA_STAR_KIRC)) 

write.csv(rna_STAR, "STAR Count_expression_mRNA.csv")
protein coding RNA-Seq TCGA • 366 views
ADD COMMENT

Login before adding your answer.

Traffic: 2304 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6