Skip to content

Commit

Permalink
update pysnptools, minor fix in popcorn
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrei committed Oct 25, 2022
1 parent 8998a8b commit 57752f8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.1] - 2022-10-25

### Updated

- popcorn.sif container (``md5sum: 4a0fce687b62d06540ce2d315f413ba9``)
updated from https://github.com/ofrei/Popcorn/tree/fa1326c318859dee0f3ec884a25a2639c9311bd7
- pysnptools dependency updated from 0.5.4 to 0.5.7

## [1.0.0] - 2022-10-21

### Added
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ Please keep up to date (and update the main `<popcorn>/README.md` when pushing n
| ----------------------- | ------------------- | ----------------------------------------
| popcorn.sif | ubuntu | 20.04
| popcorn.sif | python3 | python 3.10.6
| popcorn.sif | popcorn | https://github.com/brielin/Popcorn ef4455a
| popcorn.sif | popcorn | https://github.com/ofrei/Popcorn @ fa1326c
| | | (minor fix on top of the original https://github.com/brielin/Popcorn @ ef4455a)

## Building/rebuilding containers

Expand Down
4 changes: 2 additions & 2 deletions containers/popcorn.sif
Git LFS file not shown
8 changes: 4 additions & 4 deletions src/dockerfiles/popcorn/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ RUN yes | pip install bed-reader==0.2.24
#bed-reader>=0.2.5
#more-itertools>=8.7.0

RUN yes | pip install pysnptools==0.5.4 --no-dependencies
RUN yes | pip install pysnptools==0.5.7

WORKDIR /tools/popcorn
RUN git clone https://github.com/brielin/Popcorn.git . && \
git reset --hard ef4455a970d4104832cca02510c555d9220b1414 && \
pip install . --no-dependencies
RUN git clone https://github.com/ofrei/Popcorn.git . && \
git reset --hard fa1326c318859dee0f3ec884a25a2639c9311bd7 && \
pip install .

# cleanup for smaller image size
RUN mamba clean -a -y
Expand Down
2 changes: 1 addition & 1 deletion version/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "0"
_PATCH = "1"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down

0 comments on commit 57752f8

Please sign in to comment.