From 67267fc85709e36f77574680f6852e1183fb33cc Mon Sep 17 00:00:00 2001 From: Ali Hamraoui Date: Fri, 3 Nov 2023 16:04:54 +0100 Subject: [PATCH] ToulligQC is now 2.5. --- CHANGES.md | 7 ++++++- Dockerfile | 2 +- toulligqc/version.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8bd1546..d56c73b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,13 @@ # Changelog +## 2.5 (2023-11-03) +* Fixed error when no failed reads were found (Issue #20). +* Fixed error when unclassified barcodes were missing. +* FASTQ and BAM files can now be used instead of the sequencing summary file. +* Added the ability to specify a barcode range (e.g., `--barcodes barcode01:barcode48`). ## 2.4 (2023-04-26) * In over time graphs (read length, PHRED score and translocation speed), now fill the gaps for the 75% and 25% to avoid filling glitch. -* fix 2D density plot title style. +* Fix 2D density plot title style. * Fix error when a summary file with barcode information was provided in addition of barcoding files (Issue #17), now the barcode files will be skipped with a warning message in case summary file with barcode information is provided. * Add the selected speed and sample frequency of the run in the "Run statistics" table of the ToulligQC report diff --git a/Dockerfile b/Dockerfile index 53b962c..3acb434 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 MAINTAINER Laurent Jourdren -ARG VERSION=2.4 +ARG VERSION=2.5 RUN apt update && \ DEBIAN_FRONTEND=noninteractive apt install --yes \ python3 \ diff --git a/toulligqc/version.py b/toulligqc/version.py index 5d52fa0..ad06391 100644 --- a/toulligqc/version.py +++ b/toulligqc/version.py @@ -1 +1 @@ -__version__ = '2.4' +__version__ = '2.5'