Entering edit mode
I'm trying TCGAutils with coad dataset, but i have an error on sampleTables
Run:
coad <- curatedTCGAData::curatedTCGAData(diseaseCode = "COAD", assays = "CN*", dry.run = FALSE) sampleTables(coad)
Result:
Error in .checkBarcodes(barcodes) : barcode delimiters not consistent
Any suggestions?
Hi Mario, I've checked this with the Bioconductor release version
3.7
and it works as well.There may be something wrong with your installation. Check that you're not mixing versions of packages.
Remove a couple of packages:
remove.packages(c("BiocManager", "BiocVersion"))
.Your
biocLite("BiocUpgrade")
should return something like:Then, reinstall
TCGAutils
usingBiocInstaller
:Regards, Marcel
Ok, now works. Thank you Marcel!