-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix_skip_count
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
################################################################################ | ||
##################### Set Inital Image to work from ############################ | ||
FROM ubuntu:16.04 | ||
|
||
################################################################################ | ||
##################### Add Container Labels ##################################### | ||
LABEL "Regtools_License"="MIT" | ||
LABEL "Description"="Software package which integrate DNA-seq and RNA-seq data\ | ||
to help interpret mutations in a regulatory and splicing\ | ||
context." | ||
|
||
################################################################################ | ||
##################### Install System Dependencies ############################## | ||
RUN apt-get update | ||
RUN apt-get install -y git | ||
RUN apt-get install -y build-essential | ||
RUN apt-get install -y cmake | ||
RUN apt-get install -y zlib1g-dev | ||
|
||
################################################################################ | ||
##################### Install Regtools ######################################### | ||
|
||
# clone git repository | ||
RUN git clone https://github.com/griffithlab/regtools.git | ||
|
||
# make a build directory for regtools | ||
WORKDIR /regtools/ | ||
RUN mkdir build | ||
|
||
# compile from source | ||
RUN cd /regtools/build && cmake .. | ||
RUN cd /regtools/build && make | ||
|
||
################################################################################ | ||
###################### set environment path ################################# | ||
|
||
# add regtools executable to path | ||
ENV PATH="/regtools/build:${PATH}" |
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