-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into no_upload_master
- Loading branch information
Showing
1,402 changed files
with
222,514 additions
and
158,438 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
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 @@ | ||
version: '3' | ||
|
||
services: | ||
app: | ||
tty: true | ||
build: | ||
context: . | ||
dockerfile: ./dockerConf/Dockerfile | ||
image: covid_mvp_app | ||
ports: | ||
- "8050:8050" | ||
volumes: | ||
- .:/app |
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,19 @@ | ||
FROM continuumio/miniconda3 | ||
|
||
WORKDIR /app | ||
|
||
COPY ./dockerConf/environment.yml /environment.yml | ||
COPY ./dockerConf/start.sh /start.sh | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get install default-jre -y \ | ||
&& wget -qO- https://get.nextflow.io | bash \ | ||
&& chmod +x nextflow \ | ||
&& mv /app/nextflow /usr/local/bin \ | ||
&& conda env create -f /environment.yml \ | ||
&& sed -i 's/\r$//g' /start.sh \ | ||
&& chmod +x /start.sh | ||
|
||
# https://pythonspeed.com/articles/activate-conda-dockerfile/ | ||
ENTRYPOINT ["conda", "run", "--no-capture-output", "-n", "COVID-MVP", "/start.sh"] | ||
EXPOSE 8050 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,55 @@ | ||
name: COVID-MVP | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- defaults | ||
dependencies: | ||
- _libgcc_mutex=0.1=conda_forge | ||
- _openmp_mutex=4.5=2_gnu | ||
- bzip2=1.0.8=h7f98852_4 | ||
- ca-certificates=2023.01.10=h06a4308_0 | ||
- ld_impl_linux-64=2.40=h41732ed_0 | ||
- libffi=3.4.2=h7f98852_5 | ||
- libgcc-ng=12.2.0=h65d4601_19 | ||
- libgomp=12.2.0=h65d4601_19 | ||
- libnsl=2.0.0=h7f98852_0 | ||
- libsqlite=3.40.0=h753d276_0 | ||
- libuuid=2.32.1=h7f98852_1000 | ||
- libzlib=1.2.13=h166bdaf_4 | ||
- ncurses=6.4=h6a678d5_0 | ||
- openssl=3.0.8=h0b41bf4_0 | ||
- pip=23.0.1=pyhd8ed1ab_0 | ||
- python=3.9.16=h2782a2a_0_cpython | ||
- readline=8.2=h5eee18b_0 | ||
- setuptools=67.5.1=pyhd8ed1ab_0 | ||
- tk=8.6.12=h27826a3_0 | ||
- tzdata=2022g=h191b570_0 | ||
- wheel=0.38.4=pyhd8ed1ab_0 | ||
- xz=5.2.10=h5eee18b_1 | ||
- pip: | ||
- brotli==1.0.9 | ||
- click==8.1.3 | ||
- dash==1.20.0 | ||
- dash-bootstrap-components==0.11.3 | ||
- dash-core-components==1.16.0 | ||
- dash-html-components==1.1.3 | ||
- dash-renderer==1.9.1 | ||
- dash-table==4.11.3 | ||
- flask==2.1.3 | ||
- flask-caching==1.10.1 | ||
- flask-compress==1.13 | ||
- future==0.18.3 | ||
- gunicorn==20.1.0 | ||
- importlib-metadata==6.0.0 | ||
- itsdangerous==2.1.2 | ||
- jinja2==3.1.2 | ||
- markupsafe==2.1.2 | ||
- numpy==1.24.2 | ||
- pandas==1.2.0 | ||
- plotly==5.13.1 | ||
- python-dateutil==2.8.2 | ||
- pytz==2022.7.1 | ||
- six==1.16.0 | ||
- tenacity==8.2.2 | ||
- werkzeug==2.0.2 | ||
- zipp==3.15.0 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.