-
Notifications
You must be signed in to change notification settings - Fork 8
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 #59 from Gregor-Mendel-Institute/1.3.1
Merge 1.3.1 > master
- Loading branch information
Showing
26 changed files
with
130 additions
and
80 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
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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM continuumio/miniconda3 | ||
FROM mambaorg/micromamba:0.13.0 | ||
LABEL authors="[email protected]" \ | ||
description="Container image containing DPP dependencies for ARADEEPOPSIS" | ||
|
||
COPY environment.yml / | ||
RUN apt-get update && apt-get install -y procps graphviz && apt-get clean -y | ||
RUN conda env create -f /environment.yml && conda clean -afy | ||
ENV PATH /opt/conda/envs/aradeepopsis-dpp-v1.3/bin:$PATH | ||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends -y procps \ | ||
&& micromamba install -y -n base -f /environment.yml \ | ||
&& micromamba clean -a && rm -rf /var/lib/{apt,dpkg,cache,log} |
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 |
---|---|---|
@@ -1,15 +1,10 @@ | ||
name: aradeepopsis-dpp-v1.3 | ||
name: aradeepopsis-dpp | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python=3.7 | ||
- pip | ||
- conda-forge::scipy=1.5.0 | ||
- conda-forge::opt-einsum=3.0.0 | ||
- conda-forge::tqdm=4.47.0 | ||
- conda-forge::pillow=7.1.2 | ||
- conda-forge::python=3.7 | ||
- conda-forge::pip=21.1.1 | ||
- pip: | ||
- tensorflow==1.15 | ||
- opencv-python==4.2.0.34 | ||
- https://github.com/p2irc/deepplantphenomics/archive/2.1.0.tar.gz | ||
- opencv-python-headless==4.5.2.52 | ||
- https://github.com/p2irc/deepplantphenomics/archive/2.1.0.tar.gz |
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM continuumio/miniconda3 | ||
FROM mambaorg/micromamba:0.13.0 | ||
LABEL authors="[email protected]" \ | ||
description="Container image containing base dependencies for ARADEEPOPSIS" | ||
description="Container image containing DPP dependencies for ARADEEPOPSIS" | ||
|
||
COPY environment.yml / | ||
RUN apt-get update && apt-get install -y procps graphviz && apt-get clean -y | ||
RUN conda env create -f /environment.yml && conda clean -afy | ||
ENV PATH /opt/conda/envs/aradeepopsis-base-v1.3/bin:$PATH | ||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends -y procps \ | ||
&& micromamba install -y -n base -f /environment.yml \ | ||
&& micromamba clean -a && rm -rf /var/lib/{apt,dpkg,cache,log} |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
name: aradeepopsis-base-v1.3 | ||
name: aradeepopsis-base | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- anaconda::tensorflow-base=2.0.0 | ||
- anaconda::tensorflow-estimator=2.0.0 | ||
- conda-forge::tensorflow-base=2.4.1 | ||
- conda-forge::scikit-image=0.18.1 | ||
- conda-forge::imagemagick=7.0.10_28 | ||
- conda-forge::imagemagick=7.0.11_12 |
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
FROM continuumio/miniconda3 | ||
FROM mambaorg/micromamba:0.13.0 | ||
LABEL authors="[email protected]" \ | ||
description="Container image containing shiny dependencies for ARADEEPOPSIS" | ||
description="Container image containing DPP dependencies for ARADEEPOPSIS" | ||
|
||
COPY environment.yml / | ||
RUN apt-get update && apt-get install -y procps graphviz && apt-get clean -y | ||
RUN conda env create -f /environment.yml && conda clean -afy | ||
ENV PATH /opt/conda/envs/aradeepopsis-shiny-v1.3/bin:$PATH | ||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends -y procps \ | ||
&& micromamba install -y -n base -f /environment.yml \ | ||
&& micromamba clean -a && rm -rf /var/lib/{apt,dpkg,cache,log} | ||
|
||
EXPOSE 44333 | ||
EXPOSE 44333 |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: aradeepopsis-shiny-v1.3 | ||
name: aradeepopsis-shiny | ||
channels: | ||
- conda-forge | ||
- r | ||
- defaults | ||
dependencies: | ||
- conda-forge::r-tidyverse=1.3.0 | ||
- conda-forge::r-shiny=1.5.0 | ||
- conda-forge::r-shinythemes=1.1.2 | ||
- conda-forge::r-tidyverse=1.3.1 | ||
- conda-forge::r-shiny=1.6.0 | ||
- conda-forge::r-shinythemes=1.2.0 | ||
- conda-forge::r-shinycssloaders=1.0.0 | ||
- conda-forge::r-slickr=0.5.0 | ||
- conda-forge::r-corrplot=0.84 | ||
- conda-forge::r-corrplot=0.88 | ||
- conda-forge::r-jpeg=0.1_8.1 | ||
- r::r-radarchart=0.3.1 | ||
- r::r-radarchart=0.3.1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.