From 8624746f2b8fed87e72723fe2ba26eff37f108af Mon Sep 17 00:00:00 2001 From: Larissa Glass <larissa.glass@unibas.ch> Date: Wed, 9 Nov 2022 14:10:11 +0100 Subject: [PATCH] Add Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..be953d5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3-slim + +WORKDIR /usr/src/app + +COPY README.md requirements.txt pyproject.toml ./ +ADD tsg ./tsg +ADD data ./data + +RUN pip install . + +CMD [ "transcript-generator", "--transcripts", "data/transcripts_short.csv", "--annotation", "data/Homo_sapiens.GRCh38.103.chr.gtf", "--prob_inclusion", "0.05" ] \ No newline at end of file -- GitLab