Hi, I want to download the RNA-seq data from the TCGA website. After I built the data matrix on the TCGA website, there are hundreds of the checkboxes. However, I only want to download the ones with the specific name rsem.genes.normalized_results
, because I only needed the normalized data. It is too time-consuming to click one by one. Could anyone help to show me some more simple way to do it? Thank you so much!
Hi Karl, Thanks so much. I've downloaded the TCGA-Assembler, however, after I installed the Rtools31 and downloaded the httr version 0.5.0., and tried to type
install.packages("httr_0.5.tar.gz", type="source", repos=NULL)
it turned out that
Could you help to tell me how to solve this problem? Thank you so much!
That's a computer problem, maybe your IT admin can help install the packages. It's a common enough issue with R packages. Read the error message, "dependency jsonlite is not available"
So first you'll have to
install.packages("jsonlite")
and it should download from CRAN automatically.I tried it now, httr also wants a package called "R6" which was installed automatically when completing
You don't have to specify
repos=NULL
, and it will download for you.