diff --git a/CHANGELOG.md b/CHANGELOG.md index 94e8b77..7e5603f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,24 @@ ## [Unreleased] +### Added + +### Fixed + +### Changed + +## [0.6.0] + ### Added - Add optional SNV and structural variants to sample output - Add `n_read_pairs` ### Fixed + - Calculation of `iqr_median` (now called `coverage_uniformity`) ### Changed + - Renamed variables to be more informative (`median` to `median_cov`, `tot_reads` to `n_reads` & `mapped_reads` to `n_mapped_reads`) ## [0.5.0] diff --git a/Dockerfile b/Dockerfile index fd88b8f..2aa904f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,7 +59,7 @@ RUN /bin/bash -c "source ~/.bashrc" LABEL authors="Markus Johansson , Ryan Kennedy " \ maintainers="Markus Johansson , Ryan Kennedy " \ description="Docker image for bonsai-prp" \ - version="0.5.0" + version="0.6.0" # Default command to run when the container starts CMD ["python"] diff --git a/prp/__version__.py b/prp/__version__.py index 99204dc..5279573 100644 --- a/prp/__version__.py +++ b/prp/__version__.py @@ -1,2 +1,2 @@ """PRP version""" -VERSION = "0.5.0" +VERSION = "0.6.0"