-
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 #3 from bneron/master
ready for releasing 0.1.3
- Loading branch information
Showing
5 changed files
with
32 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM python:3.8.5 | ||
|
||
LABEL org.label-schema.vcs-url="https://github.com/tekpinar/correlationPlus" | ||
LABEL org.label-schema.version="1.0.3" | ||
LABEL org.label-schema.description="A Python API to plot and analyze dynamical correlations of proteins." | ||
LABEL org.label-schema.docker.cmd="docker run -v ~:/home/correlationPlus correlation_plus <sub cmd> <args>" | ||
|
||
USER root | ||
|
||
RUN pip3 install numpy==1.19.1 matplotlib==3.3.0 scipy==1.5.2 networkx==2.4 biopython==1.77 prody==1.10.11 | ||
RUN pip3 correlationPlus==0.1.3 | ||
RUN useradd -m correlationPlus | ||
|
||
USER correlationPlus | ||
WORKDIR /home/correlationPlus | ||
|
||
ENTRYPOINT ["/bin/sh", "-c" , "correlationPlus $0 $@"] |
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,5 +1,6 @@ | ||
numpy | ||
matplotlib | ||
prody | ||
scipy | ||
networkx | ||
numpy==1.19.1 | ||
matplotlib==3.3.0 | ||
scipy==1.5.2 | ||
networkx==2.4 | ||
biopython==1.77 | ||
prody==1.10.11 |
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 |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
version=cp_vers, | ||
description=" Python package to plot and analyze dynamical correlations maps of proteins.", | ||
long_description=open('README.md').read(), | ||
long_description_content_type="text/markdown", | ||
author="Mustafa Tekpinar", | ||
author_email="[email protected]", | ||
url="https://github.com/tekpinar/correlationPlus", | ||
|
@@ -39,6 +40,7 @@ | |
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Operating System :: POSIX', | ||
'Operating System :: Microsoft :: Windows', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
|