Skip to content

Commit d46ae15

Browse files
authored
Merge pull request #9 from SystemsGenetics/develop
Python version of FUNC-E
2 parents d329855 + f3680d7 commit d46ae15

36 files changed

+357194
-1963
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
demo/demo_run.FUNC-E.cluster_terms.tsv
2+
demo/demo_run.FUNC-E.clusters.tsv
3+
demo/demo_run.FUNC-E.enriched_terms.tsv
4+
__pycache__
5+

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM ubuntu:18.04
2+
3+
# install system dependencies
4+
RUN apt-get update -qq && apt-get install -qq -y curl git python3-dev python3-pip && ln -s /usr/bin/python3 python
5+
6+
#changing working directory in Docker container
7+
WORKDIR /app
8+
9+
# copy data from local into Docker container
10+
ADD . /app/
11+
12+
# install python dependencies
13+
RUN pip3 install -r requirements.txt

0 commit comments

Comments
 (0)