Skip to content

Commit

Permalink
Merge tag '5.7.0' into dev
Browse files Browse the repository at this point in the history
Significant speed increase
  • Loading branch information
keiranmraine committed Mar 23, 2020
2 parents 0182bd8 + b87de2c commit 22b2b33
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# CHANGES

## 5.6.1
## 5.7.0

* Switch to low level HTS API to speed up fetch calls.
* Collate mate read calls into single fetch for overlapping ranges.
* ~46% faster - see [#68](https://github.com/cancerit/vafCorrect/pull/68).

## 5.6.1

* Ensure line read rather than $_ are used in split
* Update license years
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ FROM ubuntu:16.04

LABEL maintainer="[email protected]"\
uk.ac.sanger.cgp="Cancer, Ageing and Somatic Mutation, Wellcome Sanger Institute" \
version="5.6.0" \
version="5.7.0" \
description="vafCorrect"

ENV OPT /opt/wtsi-cgp
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
| --------------------------------------------- | ----------------------------------------------- |
| [![Master Badge][travis-master-badge]][travis-repo] | [![Develop Badge][travis-develop-badge]][travis-repo] |

- [vafCorrect](#vafcorrect)
- [Quick installation](#quick-installation)
- [Skipping all external dependencies](#skipping-all-external-dependencies)
- [Skipping exonerate install](#skipping-exonerate-install)
- [INSTALL](#install)
- [Dependencies](#dependencies)
- [Creating a release](#creating-a-release)
- [Preparation](#preparation)
- [Cutting the release](#cutting-the-release)
- [LICENCE](#licence)
* [vafCorrect](#vafcorrect)
* [Quick installation](#quick-installation)
* [Skipping all external dependencies](#skipping-all-external-dependencies)
* [Skipping exonerate install](#skipping-exonerate-install)
* [INSTALL](#install)
* [Dependencies](#dependencies)
* [Creating a release](#creating-a-release)
* [Preparation](#preparation)
* [Cutting the release](#cutting-the-release)
* [LICENCE](#licence)

## vafCorrect

Expand Down Expand Up @@ -77,7 +77,7 @@ tools to be available, most are listed in `INSTALL`.

### Cutting the release

1. Update `perl/lib/Sanger/CGP/Vaf.pm` to the correct version.
1. Update `perl/lib/Sanger/CGP/Vaf.pm` and the label in `Dockerfile` to the correct version.
2. Update `CHANGES.md` to show major items.
3. Run `./perl/prerelease.sh`
4. Check all tests and coverage reports are acceptable.
Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Vaf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Sanger::CGP::Vaf;
use strict;
use Const::Fast qw(const);

our $VERSION = '5.6.1';
our $VERSION = '5.7.0';

const my $LICENSE =>
"#################
Expand Down

0 comments on commit 22b2b33

Please sign in to comment.