Skip to content
Snippets Groups Projects
Commit 3df0f928 authored by Brandon Chen's avatar Brandon Chen
Browse files

rootdir bugfix

parent 35d9d883
No related merge requests found
Pipeline #13965 failed with stage
#!/bin/bash
PACKAGE="shiny"
VERSION="1.0.0"
CONTAINER_TAG="${PACKAGE}:${VERSION}"
CONTAINER_NAME="git.biohpc.swmed.edu:5050/astrocyte/workflows/bicf/tcga_shiny/${CONTAINER_TAG}"
# build with proxy settingsdocker
docker build -f Dockerfile -t ${CONTAINER_NAME} . &> build_and_push.${VERSION}.log
# docker login
# Please create your person "Acess token" and config the "~/.docker/config.json" to login automatically
docker login git.biohpc.swmed.edu:5050
# # Tag and push
docker push ${CONTAINER_NAME}
......@@ -15,7 +15,7 @@ files <- list.files(rootdir,pattern="\\.rdata$",ignore.case=TRUE)
#message('###################################################################')
#message('Analysis started ...')
inputFile=paste0("./data/",files)
inputFile=paste0(rootdir,files)
#odaObj=createODAObject(inputFile)
load(inputFile)
wbObj=createWBObject(odaObj$parameters)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment