This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install MATLAB Compiler Runtime on project Docker container (#531)
* First pass at MCR install * The xorg step appeared to be hanging * Needs to be noninteractive * Forgot RUN * Try noninteractive another way * Environmental variables for MCR * Move up copy number consensus * Move MCR up * Revert "Move MCR up" This reverts commit f840192. * Don't configure environmental variables * Unclear if the embryonal subtyping is failure related * Revert "Unclear if the embryonal subtyping is failure related" This reverts commit 0895474. * Revert "Move up copy number consensus" This reverts commit 1b839c4. * WIP: push what I have * add MCR working w/ gistic steps * hold my container * Move export LD_LIBRARY_PATH step * Use ENV instead * Quiet wget * Install GISTIC in /home/rstudio * Add GISTIC proof of concept Co-authored-by: Casey Greene <[email protected]>
- Loading branch information
1 parent
aaada2b
commit e2058dd
Showing
3 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
set -o pipefail | ||
|
||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/mcr/v83/runtime/glnxa64:/opt/mcr/v83/bin/glnxa64:/opt/mcr/v83/sys/os/glnxa64: | ||
export XAPPLRESDIR=/opt/mcr/v83/X11/app-defaults | ||
|
||
cd /home/rstudio/gistic_install && ./run_gistic_example |