-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from SystemsGenetics/develop
Python version of FUNC-E
- Loading branch information
Showing
36 changed files
with
357,194 additions
and
1,963 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,5 @@ | ||
demo/demo_run.FUNC-E.cluster_terms.tsv | ||
demo/demo_run.FUNC-E.clusters.tsv | ||
demo/demo_run.FUNC-E.enriched_terms.tsv | ||
__pycache__ | ||
|
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,13 @@ | ||
FROM ubuntu:18.04 | ||
|
||
# install system dependencies | ||
RUN apt-get update -qq && apt-get install -qq -y curl git python3-dev python3-pip && ln -s /usr/bin/python3 python | ||
|
||
#changing working directory in Docker container | ||
WORKDIR /app | ||
|
||
# copy data from local into Docker container | ||
ADD . /app/ | ||
|
||
# install python dependencies | ||
RUN pip3 install -r requirements.txt |
Oops, something went wrong.