Skip to content

Commit

Permalink
Merge pull request #51 from gitter-lab/prepare-release
Browse files Browse the repository at this point in the history
Prepare version 0.4.0 release
  • Loading branch information
agitter committed Jan 24, 2020
2 parents 5586f0d + d7b3a06 commit 5c9bcd5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Version 0.4.0
Changes in version 0.4.0 include:
- Support three modes of execution: MATLAB, compiled MATLAB executables with MATLAB runtime, or Docker
- The SINGE workflow has been split in GLG and Aggregate steps
- A wrapper script supports running the GLG and Aggregate steps individually or the entire workflow
- Increase robustness of hyperparameter parsing
- Add script to generate hyperparameter file
- Add usage guidelines
- Update Docker images are built on Travis CI
- Generalize Docker image to work outside the SINGE git repository
- Add default entrypoint to Docker image
- Test cases assert that the source code matches the compiled MATLAB executables
- All remaining instances of the old name SCINGE have been changed to SINGE
- Rename data1/tf.mat to data1/gene_list.mat and added data3 dataset

# Version 0.3.0
Version 0.3.0 contains optimizations that greatly increase SINGE's speed but can change its output:
- Switch to single precision for the kernel matrix
Expand Down
2 changes: 1 addition & 1 deletion code/SINGE.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
% aggregation
% hyperparameter_file = file path to text file containing all
% hyperparameters
SINGE_version = '0.3.0';
SINGE_version = '0.4.0';
display(SINGE_version);

fid = fopen(hyperparameter_file);
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ENV SINGE_RUNNING_IN_DOCKER 1

# Download an intermediate version of the compiled SINGE executables for testing
# Download the md5sums of the source .m files and binaries
RUN md5=d4f3ad7f18d2c03a6e2f40179248680d && \
RUN md5=fc1ffba71d68b09cb65fc35d1bf05222 && \
wget --quiet https://www.biostat.wisc.edu/~gitter/tmp/$md5/SINGE_Test && \
wget --quiet https://www.biostat.wisc.edu/~gitter/tmp/$md5/SINGE_GLG_Test && \
wget --quiet https://www.biostat.wisc.edu/~gitter/tmp/$md5/SINGE_Aggregate && \
Expand Down

0 comments on commit 5c9bcd5

Please sign in to comment.