Open IvanEllson opened 6 months ago
I have the same issue! Did you find out a way to solve it? Thanks!
Issue is that BEATAML barcodes start with "aq-" which the code is not prepared to handle.
Added fix https://github.com/BioinformaticsFMRP/TCGAbiolinks/pull/634
Hi @warbol I have exactly that issue and want to use TCGAbiolinks including your updated function. Do you have an advice how I can to this? Can I install a package version from a development branch? Thank you, Christian
@ChristianRohde
library(remotes)
remotes::install_github(repo="BioinformaticsFMRP/TCGAbiolinks", ref = remotes::github_pull(634))
will install the updated package from the GitHub pull request #634
Hi @warbol Thank you! I tried to download the updated package but I got this error below. Could you assist me with that?
install_github('BioinformaticsFMRP/TCGAbiolinks', 'remotes::github_pull(634)') Downloading GitHub repo BioinformaticsFMRP/TCGAbiolinks@remotes::github_pull(634) Error in utils::download.file(url, path, method = method, quiet = quiet, : cannot open URL 'https://api.github.com/repos/BioinformaticsFMRP/TCGAbiolinks/tarball/remotes%3A%3Agithub_pull%28634%29'
Thank you!
You can try using devtools version of install_github instead of remotes?
library(devtools)
devtools::install_github(repo="BioinformaticsFMRP/TCGAbiolinks", ref = devtools::github_pull(634))
I just verified it works so it may be a network issue on your end.
Hello,
I have encontered an error using GDCprepare with gene expression data from BEATAML1.0-COHORT, while trying to add clinical information to samples:
Error in
dplyr::bind_cols()
: ! Can't recycle..1
(size 0) to match..2
(size 2).The error appears with the last TCGAbiolinks versions (2.32.0 and 2.31.4), but not with older versions like 2.28.4. The error can be found running the following code (including rlang::last_trace() output):
And my R session info:
Thank you