diff --git a/CHANGELOG.md b/CHANGELOG.md index 76f2d8f..5682bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ -# v1.1.1 +# v1.1.2 +## Enhancements +- Fixed calculation of contig coverages for hybrid assemblies +- Improved resolution of phyl. trees +- Fixed calculation of PE read mapping metrics +- Fixed GenBank CDS extraction in VF detection +- Changed reports locale to EN +- Applied many bugfixes and minor improvements to report pages +# v1.1.1 ## Enhancements - Fixed and improved cloud orchestration logic -- Fixed allel detection in MLST +- Fixed allel detection in MLST - Fixed ABR gene detection and length calculation - Applied minor improvements and bugfixes to report pages diff --git a/core/pom.xml b/core/pom.xml index ef49cbb..15417d0 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ bio.comp.jlu.asap asap - 1.1.1 + 1.1.2 jar ASAP diff --git a/core/src/main/java/bio/comp/jlu/asap/ASAPConstants.java b/core/src/main/java/bio/comp/jlu/asap/ASAPConstants.java index 5c8c199..7dc9e44 100644 --- a/core/src/main/java/bio/comp/jlu/asap/ASAPConstants.java +++ b/core/src/main/java/bio/comp/jlu/asap/ASAPConstants.java @@ -12,6 +12,6 @@ public final class ASAPConstants { public final static int MAX_STEP_WAITING_PERIOD = 24*60*60*1000; public final static int EXP_BACKOFF_EXP = 10; -public final static String ASAP_VERSION = "1.1.1"; +public final static String ASAP_VERSION = "1.1.2"; }