Skip to content

Commit

Permalink
Preparing release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
leoisl committed May 21, 2021
1 parent ac6c2de commit 9a9d3fa
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ project adheres to

## [Unreleased]

## [0.9.1]

### Added
- `pandora` is now installable through `conda`;
- A script to archive the `pandora` repository with git submodules;

### Changed
- Improved the sample example so now we can assert that the output produced is the expected one;
- Changes to the build process that enables `pandora` to be compiled in the `conda` environment;

## [0.9.0]

### Changed
Expand Down Expand Up @@ -97,7 +107,8 @@ from this point will have their changes meticulously documented here.

- k-mer coverage underflow bug in `LocalPRG` [[#183][183]]

[Unreleased]: https://github.com/rmcolq/pandora/compare/0.9.0...HEAD
[Unreleased]: https://github.com/rmcolq/pandora/compare/0.9.1...HEAD
[0.9.1]: https://github.com/rmcolq/pandora/releases/tag/0.9.1
[0.9.0]: https://github.com/rmcolq/pandora/releases/tag/0.9.0
[0.9.0-rc2]: https://github.com/rmcolq/pandora/releases/tag/0.9.0-rc2
[0.9.0-rc1]: https://github.com/rmcolq/pandora/releases/tag/0.9.0-rc1
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ HunterGate(

# project configuration
set(PROJECT_NAME_STR pandora)
project(${PROJECT_NAME_STR} VERSION "0.9.0" LANGUAGES C CXX)
project(${PROJECT_NAME_STR} VERSION "0.9.1" LANGUAGES C CXX)
set(ADDITIONAL_VERSION_LABELS "")
configure_file( include/version.h.in ${CMAKE_BINARY_DIR}/include/version.h )

Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- [Hands-on toy example](#hands-on-toy-example)
- [Installation](#installation)
- [Precompiled portable binary](#no-installation-needed---precompiled-portable-binary)
- [Conda](#conda)
- [Containers](#containers)
- [Installation from source](#installation-from-source)
- [Usage](#usage)
Expand Down Expand Up @@ -78,18 +79,25 @@ In this binary, all libraries are linked statically.

* **Download**:
```
wget https://github.com/rmcolq/pandora/releases/download/0.9.0/pandora-linux-precompiled-v0.9.0
wget https://github.com/rmcolq/pandora/releases/download/0.9.1/pandora-linux-precompiled-v0.9.1
```

* **Running**:
```
chmod +x pandora-linux-precompiled-v0.9.0
./pandora-linux-precompiled-v0.9.0 -h
chmod +x pandora-linux-precompiled-v0.9.1
./pandora-linux-precompiled-v0.9.1 -h
```

* **Notes**:
* We provide precompiled binaries for Linux OS only;

### Conda

To install `pandora` through `conda`, run:
```
conda install -c bioconda pandora
```

### Containers

[![Docker Repository on Quay](https://quay.io/repository/rmcolq/pandora/status "Docker Repository on Quay")](https://quay.io/repository/rmcolq/pandora)
Expand Down
4 changes: 2 additions & 2 deletions example/run_pandora.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ function download_tool {
# setup tools
if [ "$#" -eq 0 ] ; then
# not conda env
pandora_URL="https://github.com/rmcolq/pandora/releases/download/0.9.0/pandora-linux-precompiled-v0.9.0"
pandora_executable="./pandora-linux-precompiled-v0.9.0"
pandora_URL="https://github.com/rmcolq/pandora/releases/download/0.9.1/pandora-linux-precompiled-v0.9.1"
pandora_executable="./pandora-linux-precompiled-v0.9.1"
download_tool "${pandora_URL}" "${pandora_executable}"
else
# conda env
Expand Down

0 comments on commit 9a9d3fa

Please sign in to comment.