-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tcga_surv_get
function for methylation profiles is failing in R studio
#359
Comments
Thank you for pointing out the issue. We've identified the cause of the bugs. The methylation datasets used in UCSCXenaShiny V2 were sourced from the GDC hub on the UCSC Xena platform: Unfortunately, these datasets are currently inaccessible, which caused the error you encountered. We have now switched to alternative methylation datasets used in our V1 version. You should be able to run the methylation analysis successfully with the latest development version. |
Checked! Great, back in business! Many thanks! |
@lishensuo, you may be interested in the query reply I received from UCSC Xena regarding the issue, which I transcribe here for your reference ########################## We have recently updated the GDC data and retired the 2019 data you are referencing to another location: https://xenabrowser.net/datapages/?host=https%3A%2F%2FgdcV18.xenahubs.net&removeHub=https%3A%2F%2Fgdc.xenahubs.net. At this point in time we have not regenerated the GDC PanCan datasets on the new data from the GDC. Note that the 2019 GDC data will only be available for visualization until October 2025. After October 2025 it will only be available for download. Please let me know if you have any questions. Mary Goldman (she/her), Design and Outreach Engineer |
@lishensuo, you may be interested in the query reply I received from UCSC Xena regarding the issue, which I transcribe here for your reference ########################## We have recently updated the GDC data and retired the 2019 data you are referencing to another location: https://xenabrowser.net/datapages/?host=https%3A%2F%2FgdcV18.xenahubs.net&removeHub=https%3A%2F%2Fgdc.xenahubs.net. At this point in time we have not regenerated the GDC PanCan datasets on the new data from the GDC. Note that the 2019 GDC data will only be available for visualization until October 2025. After October 2025 it will only be available for download. Please let me know if you have any questions. Best,
|
Thank you for sharing this information. To ensure stability, we are now using methylation datasets that are not sourced from the GDC hub. |
@quiquemedina I have recorded this, thanks for this info, I will update the old hub to UCSCXenaTools list |
Dear developers,
I noticed that the function tcga_surv_get for “methylation” profiles is failing in R Studio (UCSCXenaShiny versions 2.1.0 and 2.2.0) (see print screen 1), as well as in the new online app (https://shiny.hiplot.cn/ucsc-xena-shiny/).
The failure does not seem to be an issue with URL connectivity, as the function works fine in both the older UCSCXenaTools version 1.4.8 and the previous online app (https://shixiangwang.shinyapps.io/ucscxenashiny/).
Here is the code using UCSCXenaShiny versions 2.1.0 and 2.2.0:
r
Copiar código
library(UCSCXenaShiny)
library(UCSCXenaTools)
library(survminer)
data <- tcga_surv_get(
item = "(PAX9 + SEMA4A)",
TCGA_cohort = "LUAD",
profile = "methylation",
TCGA_cli_data = dplyr::full_join(load_data("tcga_clinical"), load_data("tcga_surv"), by = "sample"),
opt_pancan = .opt_pancan
)
tcga_surv_plot(
data,
time = "DSS.time",
status = "DSS",
cutoff_mode = "Custom",
cutpoint = c(50, 50),
profile = "methylation",
palette = "aaas"
)
Printscreen_1
However, using UCSCXenaTools version 1.4.8, the function works fine (Printscreen_2)
r
Copiar código
library(UCSCXenaShiny)
library(UCSCXenaTools)
library(survminer)
data <- tcga_surv_get(
item = "(PAX9 + SEMA4A)",
TCGA_cohort = "LUAD",
profile = "methylation",
TCGA_cli_data = dplyr::full_join(load_data("tcga_clinical"), load_data("tcga_surv"), by = "sample")
)
tcga_surv_plot(
data,
time = "DSS.time",
status = "DSS",
cutoff_mode = "Custom",
cutpoint = c(50, 50),
profile = "methylation",
palette = "aaas"
)
Printscreen_2
It seems that the code has not been updated for RStudio users after the UCSCXenaShiny versions 2.1.0 update.
Best regards,
Enrique
The text was updated successfully, but these errors were encountered: