-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lipid_dev_wdl' into 'lipid_dev'
Add lipid workflow to lipid_dev branch See merge request mass-spectrometry/metams!12
- Loading branch information
Showing
14 changed files
with
1,227 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM jcarr87/corems-base-py3.10 | ||
|
||
# set environment variables | ||
ENV PYTHONDONTWRITEBYTECODE=1 | ||
ENV PYTHONUNBUFFERED=1 | ||
ENV PYTHONNET_RUNTIME=coreclr | ||
|
||
# set working directory | ||
WORKDIR /metams | ||
|
||
# Set up the directory structure | ||
COPY metaMS/ /metams/metaMS/ | ||
COPY README.md disclaimer.txt Makefile requirements.txt setup.py /metams/ | ||
COPY db/ /metams/db/ | ||
|
||
# install dependencies | ||
RUN pip install --upgrade pip | ||
RUN apt-get update && apt-get install -y libgomp1 | ||
|
||
# Install the requirements | ||
#RUN pip install pythonnet | ||
RUN pip install -r requirements.txt | ||
|
||
# Install the MetaMS package in editable mode | ||
RUN pip install --editable . | ||
|
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
Oops, something went wrong.