-
Notifications
You must be signed in to change notification settings - Fork 26
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 #53 from KevinMenden/docker-fix
Release 0.9.6
- Loading branch information
Showing
13 changed files
with
86 additions
and
78 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"python.pythonPath": "/home/kevin/anaconda3/envs/scaden/bin/python", | ||
"python.linting.pylintEnabled": false, | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"python.linting.flake8Enabled": true | ||
"python.linting.flake8Enabled": false | ||
} |
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 @@ | ||
FROM continuumio/miniconda3 | ||
FROM ubuntu | ||
|
||
COPY environment.yml / | ||
RUN conda env create -f /environment.yml && conda clean -a | ||
ENV PATH /opt/conda/envs/scaden/bin:$PATH | ||
RUN apt-get update && apt-get upgrade -y | ||
RUN apt-get install python3 -y | ||
RUN apt-get install python3-pip -y | ||
RUN pip3 install scaden |
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,31 @@ | ||
# Changelog | ||
|
||
### Version 0.9.6 | ||
+ fixed Dockerfile (switched to pip installation) | ||
+ added better error messages to `simulate` command | ||
+ cleaned up dependencies | ||
|
||
### Version 0.9.5 | ||
+ added `scaden simulate` command to perform bulk simulation and training file creation | ||
+ added `--seed` parameter to allow reproducible Scaden runs | ||
|
||
### Version 0.9.4 | ||
+ fixed dependencies (added python>=3.6 requirement) | ||
|
||
### Version 0.9.3 | ||
+ upgrade to Tensorflow 2 | ||
+ cleaned up dependencies | ||
|
||
### Version 0.9.2 | ||
+ RAM usage improvement | ||
|
||
### Version 0.9.1 | ||
+ Added automatic removal of duplicate genes in Mixture file | ||
+ Changed name of final prediction file | ||
+ Added Scaden logo to main script | ||
|
||
### Version 0.9.0 | ||
This is the initial release version of Scaden. While this version contains full functionality for pre-processing, training and prediction, it does not | ||
contain thorough error messages, plotting functionality and a solid helper function for generation training data. These are all features | ||
planned for the release of v.1.0.0. | ||
The core functionality of Scaden is, however, implemented and fully operational. Please check the [Usage](usage) section to learn how to use Scaden. |
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 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
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