Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ODAViz
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
CRI
ODAViz
Commits
3df0f928
Commit
3df0f928
authored
1 year ago
by
Brandon Chen
Browse files
Options
Downloads
Patches
Plain Diff
rootdir bugfix
parent
35d9d883
No related merge requests found
Pipeline
#13965
failed with stage
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vizapp/build_and_push.sh
+0
-16
0 additions, 16 deletions
vizapp/build_and_push.sh
vizapp/shinyapp/global.R
+1
-1
1 addition, 1 deletion
vizapp/shinyapp/global.R
with
1 addition
and
17 deletions
vizapp/build_and_push.sh
deleted
100755 → 0
+
0
−
16
View file @
35d9d883
#!/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
}
This diff is collapsed.
Click to expand it.
vizapp/shinyapp/global.R
+
1
−
1
View file @
3df0f928
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment