Skip to content

Commit

Permalink
fix setup path for docker and change cahe mirror
Browse files Browse the repository at this point in the history
  • Loading branch information
clevermx committed Mar 23, 2024
1 parent 38ac198 commit c20ab5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion R/appConfig.R
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ user_conf_to_yaml = function(user_config){
#' or on default parameters if \code{setup_file} doesn't exist. If \code{user_conf_file} exists function does nothing.
#' @param setup_file name of config from \code{file}. If unset or not existed, "default".
#' @param user_conf_file Location of the setup.yml file with setup parameters. If not existed use file from package
createDockerConf <- function( setup_file = confFile("setup.yaml"), user_conf_file = confFile("user.conf")){
createDockerConf <- function( setup_file = confFile("setup.yml"), user_conf_file = confFile("user.conf")){
if (!file.exists(user_conf_file)){
setup_conf <- getSetupConf(setup_file, "default")
user_conf <- get_user_conf(cache_root = "/var/phantasus/cache", setup_config = setup_conf)
Expand Down
6 changes: 3 additions & 3 deletions inst/configs/R/phantasus/setup.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
default:
geo_mirrors:
true_geo: "https://ftp.ncbi.nlm.nih.gov"
minimal_cache: "https://ctlab.itmo.ru/files/software/phantasus/minimal-cache/"
minimal_cache: "https://alserglab.wustl.edu/files/phantasus/minimal-cache/"
rnaseq_counts: "https://ctlab.itmo.ru/hsds/?domain=/counts" # hsds url / absolute path to folder / NULL
fgsea_pathways: "https://ctlab.itmo.ru/files/software/phantasus/minimal-cache/fgsea/"
annot_db: "https://ctlab.itmo.ru/files/software/phantasus/minimal-cache/annotationdb/"
fgsea_pathways: "https://alserglab.wustl.edu/files/phantasus/minimal-cache/fgsea/"
annot_db: "https://alserglab.wustl.edu/files/phantasus/minimal-cache/annotationdb/"

blank:
geo_mirrors: "https://ftp.ncbi.nlm.nih.gov"
Expand Down
2 changes: 1 addition & 1 deletion inst/configs/R/phantasus/user.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ default:
rnaseq_counts: "https://ctlab.itmo.ru/hsds/?domain=/counts"
geo_mirrors:
true_geo: "https://ftp.ncbi.nlm.nih.gov"
minimal_cache: "https://ctlab.itmo.ru/files/software/phantasus/minimal-cache/"
minimal_cache: "https://alserglab.wustl.edu/files/phantasus/minimal-cache/"

0 comments on commit c20ab5e

Please sign in to comment.