cbio <- cBioPortal() does not work
ryao-mdanderson opened this issue · 10 comments
Greetings,
I installed cBioPortalData on R/4.0.0 on our institution HPC cluster. however I failed to use cBioPortal(),
$ module load R/4.0.0
$ R
$library(cBioPortalData)
cbio <- cBioPortal()
Error in Service(service = "cBioPortal", host = hostname, config = httr::config(ssl_verifypeer = 0L, :
unused arguments (api_reference_url = apiUrl, api_reference_md5sum = "b39b387c6fdd8b04badf38cb0777998f")
May you please advise what's the reason and how to fix?
Thanks,
Rong Yao
Hi Rong Yao, @ryao-mdanderson
Please make sure you have a valid Bioconductor installation by checking BiocManager::valid()
.
With R >= 4.0.0
, you should have either Bioc 3.12
or 3.13
installed.
Can you provide more information on what sessionInfo()
returns?
Hi Rong Yao, @ryao-mdanderson
You're using the a 'too-new' version of cBioPortalData
for the Bioconductor version that you have installed.
I would strongly recommend that you update your version of Bioconductor to 3.12
by using BiocManager::install(version = '3.12')
but make sure that you have an appropriate location for the new package installations... See the BiocManager vignette for managing multiple Bioconductor versions.
Alternatively, the appropriate version of cBioPortalData for Bioconductor 3.11
is cBioPortalData_2.0.10
. You
can re-install it using BiocManager::install("cBioPortalData")
.
Best,
Marcel
Feel free to re-open if you are having issues. AFAIK they should be resolved.
Best,
Marcel
Hi Rong Yao, @ryao-mdanderson
From the error, it looks like there is an issue with the dataset. Perhaps you may want to report it here: https://github.com/cBioPortal/datahub.
All datasets are not guaranteed to build as MultiAssayExperiment
data objects with older versions of
cBioPortalData
. We recommend using the latest version of R and cBioPortalData
.
It is more likely that they build now since our success rate is around 83% for packaged studies.
We have also added functionality to only download the data in the case where the MultiAssayExperiment
build is not working. These are some of the features in the newest version of the package.
Best regards,
Marcel
Hi Rong, @ryao-mdanderson
cBioPortalData version 2.0.10
(and newer) uses the AWS URL https://cbioportal-datahub.s3.amazonaws.com
.
You can see the code here: https://github.com/waldronlab/cBioPortalData/blob/RELEASE_3_11/R/cBioDataPack.R#L2
Best,
Marcel