From 61518dcfaacf07ef102324b0ebf8d0c1838212fa Mon Sep 17 00:00:00 2001 From: Keiran Raine Date: Tue, 22 Feb 2022 09:56:31 +0000 Subject: [PATCH] Detail changes, bump version --- CHANGES.md | 14 ++++++++++++++ perl/lib/Sanger/CGP/Pindel.pm | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 6a456ca..e07be09 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,19 @@ # CHANGES +## 3.8.0 + +- Adds `-noflag` option to `pindel.pl` for use cases where flagging needs to be executed separately or not at all. +- Add `-range` option to `pindel_np_from_vcf.pl` + - Creates `bed.gz` using pindel call range instead of legacy `gff3.gz` +- Adds new flag FF021, normal panel filtering using pindel call range + - Legacy normal panel filtering remove variants with any overlap with normal panel, looses larger events that we have more confidence in with longer reads. + - This is not included by default in any flag set + - A different normal panel needs to be constructed to use this (`bed.gz`) +- Nextflow DSL2 worflows + - `pindel_pl` - wraps `pindel.pl`, subworkflow included for later use. + - `np_generation` - Generate a normal panel from a list of input BAMs + - Handles the complete data generation and conversion to bed/gff3. + ## 3.7.0 - Corrects counting of BWA reads supporting a pindel call diff --git a/perl/lib/Sanger/CGP/Pindel.pm b/perl/lib/Sanger/CGP/Pindel.pm index 1405f77..74c5c5b 100644 --- a/perl/lib/Sanger/CGP/Pindel.pm +++ b/perl/lib/Sanger/CGP/Pindel.pm @@ -33,7 +33,7 @@ use strict; use Const::Fast qw(const); use base 'Exporter'; -our $VERSION = '3.7.0'; +our $VERSION = '3.8.0'; our @EXPORT = qw($VERSION); 1;