-
Notifications
You must be signed in to change notification settings - Fork 32
Separate out system dependencies of Bioconductor. #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
143dcef
Separate out system dependencies of Bioconductor.
nturaga e77b2b6
Resolve issues pointed in review
nturaga fce2ba0
Fix issues with installing multiple packages
nturaga c4a2eae
Merge branch 'master' into install_bioc_deps
nturaga d8e6958
Update patch number to 15
nturaga 723ca91
Merge branch 'master' into install_bioc_deps
nturaga File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,140 @@ | ||
| #!/bin/bash | ||
| set -e | ||
|
|
||
| # This is to avoid the error | ||
| # 'debconf: unable to initialize frontend: Dialog' | ||
| export DEBIAN_FRONTEND=noninteractive | ||
|
|
||
| ## Update apt-get | ||
| apt-get update | ||
|
|
||
| apt-get install -y --no-install-recommends apt-utils | ||
|
|
||
| ## Basic Deps | ||
| apt-get install -y --no-install-recommends \ | ||
| gdb \ | ||
| libxml2-dev \ | ||
| python3-pip \ | ||
| libz-dev \ | ||
| liblzma-dev \ | ||
| libbz2-dev \ | ||
| libpng-dev \ | ||
| libgit2-dev | ||
|
|
||
| ## sys deps from bioc_full | ||
| apt-get install -y --no-install-recommends \ | ||
| pkg-config \ | ||
| fortran77-compiler \ | ||
| byacc \ | ||
| automake \ | ||
| curl \ | ||
| cmake | ||
|
|
||
| ## This section installs libraries | ||
| apt-get install -y --no-install-recommends \ | ||
| libpcre2-dev \ | ||
| libnetcdf-dev \ | ||
| libhdf5-serial-dev \ | ||
| libfftw3-dev \ | ||
| libopenbabel-dev \ | ||
| libopenmpi-dev \ | ||
| libxt-dev \ | ||
| libudunits2-dev \ | ||
| libgeos-dev \ | ||
| libproj-dev \ | ||
| libcairo2-dev \ | ||
| libtiff5-dev \ | ||
| libreadline-dev \ | ||
| libgsl0-dev \ | ||
| libgslcblas0 \ | ||
| libgtk2.0-dev \ | ||
| libgl1-mesa-dev \ | ||
| libglu1-mesa-dev \ | ||
| libgmp3-dev \ | ||
| libhdf5-dev \ | ||
| libncurses-dev \ | ||
| libxpm-dev \ | ||
| liblapack-dev \ | ||
| libv8-dev \ | ||
| libgtkmm-2.4-dev \ | ||
| libmpfr-dev \ | ||
| libmodule-build-perl \ | ||
| libapparmor-dev \ | ||
| libprotoc-dev \ | ||
| librdf0-dev \ | ||
| libmagick++-dev \ | ||
| libsasl2-dev \ | ||
| libpoppler-cpp-dev \ | ||
| libprotobuf-dev \ | ||
| libpq-dev | ||
|
|
||
| ## software - perl extentions and modules | ||
| apt-get install -y --no-install-recommends \ | ||
| libperl-dev \ | ||
| libarchive-extract-perl \ | ||
| libfile-copy-recursive-perl \ | ||
| libcgi-pm-perl \ | ||
| libdbi-perl \ | ||
| libdbd-mysql-perl \ | ||
| libxml-simple-perl | ||
|
|
||
| ## new libs | ||
| apt-get install -y --no-install-recommends \ | ||
| libglpk-dev \ | ||
| libeigen3-dev | ||
|
|
||
| ## Databases and other software | ||
| apt-get install -y --no-install-recommends \ | ||
| sqlite \ | ||
| openmpi-bin \ | ||
| mpi-default-bin \ | ||
| openmpi-common \ | ||
| openmpi-doc \ | ||
| tcl8.6-dev \ | ||
| tk-dev \ | ||
| default-jdk \ | ||
| imagemagick \ | ||
| tabix \ | ||
| ggobi \ | ||
| graphviz \ | ||
| protobuf-compiler \ | ||
| jags | ||
|
|
||
| ## Additional resources | ||
| apt-get install -y --no-install-recommends \ | ||
| xfonts-100dpi \ | ||
| xfonts-75dpi \ | ||
| biber \ | ||
| libsbml5-dev \ | ||
| libzmq3-dev \ | ||
| python3-dev | ||
|
|
||
| ## More additional resources | ||
| ## libavfilter-dev - <infinityFlow, host of other packages> | ||
| ## mono-runtime - <rawrr, MsBackendRawFileReader> | ||
| ## libfuse-dev - <Travel> | ||
| ## ocl-icd-opencl-dev - <gpuMagic> - but machine needs to be a GPU--otherwise it's useless | ||
| apt-get -y --no-install-recommends install \ | ||
| libmariadb-dev-compat \ | ||
| libjpeg-dev \ | ||
| libjpeg-turbo8-dev \ | ||
| libjpeg8-dev \ | ||
| libavfilter-dev \ | ||
| libfuse-dev \ | ||
| mono-runtime \ | ||
| ocl-icd-opencl-dev | ||
|
|
||
| ## Python installations | ||
| pip3 install sklearn pandas pyyaml | ||
|
|
||
| ## libgdal is needed for sf | ||
| apt-get install -y --no-install-recommends \ | ||
| libgdal-dev \ | ||
| default-libmysqlclient-dev \ | ||
| libmysqlclient-dev | ||
|
|
||
| ## clean up | ||
| apt-get clean | ||
| apt-get autoremove -y | ||
| apt-get autoclean -y | ||
| rm -rf /var/lib/apt/lists/* | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.