Closed erzakiev closed 1 year ago
rba_connection_test
results are ok:
> rba_connection_test(print_output = TRUE)
Checking Your connection to the Databases currently supported by rbioapi:
--->>> Internet :
+++ Connected to the Internet.
--->>> Enrichr :
+++ The server is responding.
--->>> Ensembl :
+++ The server is responding.
--->>> JASPAR :
+++ The server is responding.
--->>> miEAA :
+++ The server is responding.
--->>> PANTHER :
+++ The server is responding.
--->>> Reactome Content Service :
+++ The server is responding.
--->>> Reactome Analysis Service :
+++ The server is responding.
--->>> STRING :
+++ The server is responding.
--->>> UniProt :
+++ The server is responding.
On R 4.3
and Windows the error is reproducible:
rba_panther_enrich(genes = c("p53", "BRCA1", "cdk2", "Q99835", "CDC42",
+ "CDK1", "KIF23", "PLK1", "RAC2", "RACGAP1"),
+ organism = 9606, annot_dataset = "GO:0008150",
+ cutoff = 0.01)
Performing over-representation enrichment analysis of 10 input genes of organism 9606 against GO:0008150 datasets.
$search
$search$error
[1] "Error annotation type data set not specified"
$search$search_type
[1] "overrepresentation"
> sessionInfo()
R version 4.3.1 (2023-06-16 ucrt)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 11 x64 (build 22621)
Matrix products: default
locale:
[1] LC_COLLATE=English_United States.utf8 LC_CTYPE=English_United States.utf8
[3] LC_MONETARY=English_United States.utf8 LC_NUMERIC=C
[5] LC_TIME=English_United States.utf8
time zone: Europe/Paris
tzcode source: internal
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] rbioapi_0.7.9
loaded via a namespace (and not attached):
[1] DBI_1.1.3 bitops_1.0-7 remotes_2.4.2.1
[4] rlang_1.1.1 magrittr_2.0.3 matrixStats_1.0.0
[7] compiler_4.3.1 RSQLite_2.3.1 png_0.1-8
[10] callr_3.7.3 vctrs_0.6.3 stringr_1.5.0
[13] profvis_0.3.8 pkgconfig_2.0.3 crayon_1.5.2
[16] fastmap_1.1.1 XVector_0.40.0 ellipsis_0.3.2
[19] utf8_1.2.3 promises_1.2.0.1 rmarkdown_2.23
[22] sessioninfo_1.2.2 decoupleR_2.6.0 ps_1.7.5
[25] purrr_1.0.1 bit_4.0.5 xfun_0.39
[28] zlibbioc_1.46.0 cachem_1.0.8 jsonlite_1.8.7
[31] GenomeInfoDb_1.36.1 blob_1.2.4 later_1.3.1
[34] DelayedArray_0.26.7 BiocParallel_1.34.2 parallel_4.3.1
[37] prettyunits_1.1.1 R6_2.5.1 stringi_1.7.12
[40] pkgload_1.3.2.1 GenomicRanges_1.52.0 Rcpp_1.0.11
[43] SummarizedExperiment_1.30.2 knitr_1.43 usethis_2.2.2
[46] IRanges_2.34.1 httpuv_1.6.11 Matrix_1.5-4.1
[49] tidyselect_1.2.0 rstudioapi_0.15.0 abind_1.4-5
[52] codetools_0.2-19 miniUI_0.1.1.1 curl_5.0.1
[55] processx_3.8.2 pkgbuild_1.4.2 lattice_0.21-8
[58] tibble_3.2.1 Biobase_2.60.0 shiny_1.7.5
[61] KEGGREST_1.40.0 evaluate_0.21 desc_1.4.2
[64] urlchecker_1.0.1 Biostrings_2.68.1 BiocManager_1.30.22
[67] pillar_1.9.0 MatrixGenerics_1.12.3 DT_0.28
[70] stats4_4.3.1 shinyjs_2.1.0 generics_0.1.3
[73] rprojroot_2.0.3 RCurl_1.98-1.12 S4Vectors_0.38.1
[76] ggplot2_3.4.2 munsell_0.5.0 scales_1.2.1
[79] xtable_1.8-4 glue_1.6.2 tools_4.3.1
[82] locfit_1.5-9.8 fs_1.6.3 grid_4.3.1
[85] tidyr_1.3.0 devtools_2.4.5 AnnotationDbi_1.62.2
[88] colorspace_2.1-0 GenomeInfoDbData_1.2.10 cli_3.6.1
[91] fansi_1.0.4 S4Arrays_1.0.5 dplyr_1.1.2
[94] gtable_0.3.3 DESeq2_1.40.2 EnhancedVolcano_1.18.0
[97] digest_0.6.33 BiocGenerics_0.46.0 tximport_1.28.0
[100] ggrepel_0.9.3 htmlwidgets_1.6.2 memoise_2.0.1
[103] htmltools_0.5.5 lifecycle_1.0.3 httr_1.4.6
[106] mime_0.12 bit64_4.0.5
The connection is ok as well
> rba_connection_test()
Checking Your connection to the Databases currently supported by rbioapi:
--->>> Internet :
+++ Connected to the Internet.
--->>> Enrichr :
+++ The server is responding.
--->>> Ensembl :
+++ The server is responding.
--->>> JASPAR :
+++ The server is responding.
--->>> miEAA :
+++ The server is responding.
--->>> PANTHER :
+++ The server is responding.
--->>> Reactome Content Service :
+++ The server is responding.
--->>> Reactome Analysis Service :
+++ The server is responding.
--->>> STRING :
+++ The server is responding.
--->>> UniProt :
+++ The server is responding.
Dear Emile,
Thank you for reporting this issue.
I'm sorry for the inconvenience. I've made minor fixes to reflect the recent changes in PANTHER's API in the past few weeks. You can reinstall rbioapi with the latest fix using the following commands: (I will submit it to CRAN when some changes accumulate)
install.packages("remotes")
remotes::install_github("moosa-r/rbioapi")
Hopefully, this will solve your problem.
Best, Moosa
works ok, amazing, thanks! I knew I should have tried the dev version first before posting, sorry!
In rbioapi_0.7.9 I get the following error while trying to run the example line of code from
?rba_panther_enrich
man page:Session information: