Skip to content

Commit 8606d51

Browse files
committed
Finish Release-2.4.1
Fixing bug with spectra-mx plotting script
2 parents 4c714c5 + b92fa47 commit 8606d51

File tree

10 files changed

+19
-2068
lines changed

10 files changed

+19
-2068
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Autoconf initialistion. Sets package name version and contact details
66
AC_PREREQ([2.68])
7-
AC_INIT([kat],[2.4.0],[https://github.com/TGAC/KAT/issues],[kat],[https://github.com/TGAC/KAT])
7+
AC_INIT([kat],[2.4.1],[https://github.com/TGAC/KAT/issues],[kat],[https://github.com/TGAC/KAT])
88
AC_CONFIG_SRCDIR([src/kat.cc])
99
AC_CONFIG_AUX_DIR([build-aux])
1010
AC_CONFIG_MACRO_DIR([m4])

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '2.4.0'
55+
version = '2.4.1'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '2.4.0'
57+
release = '2.4.1'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

doc/source/index.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@ selected and the size of your datasets.
4444
Citing
4545
======
4646

47-
The KAT paper is currently in submission. In the meantime, if you use our software
48-
and wish to cite us please use our bioRxiv preprint:
47+
If you use KAT in your work and wish to cite us please use the following citation:
4948

50-
Daniel Mapleson, Gonzalo Garcia Accinelli, George Kettleborough, Jonathan Wright, and Bernardo J. Clavijo.
49+
Daniel Mapleson, Gonzalo Garcia Accinelli, George Kettleborough, Jonathan Wright, and Bernardo J. Clavijo.
5150
**KAT: A K-mer Analysis Toolkit to quality control NGS datasets and genome assemblies.**
52-
Bioinformatics, 2016. `doi: 10.1093/bioinformatics/btw663 <http://bioinformatics.oxfordjournals.org/content/early/2016/10/20/bioinformatics.btw663.abstract>`_
51+
Bioinformatics, 2016. [doi: 10.1093/bioinformatics/btw663](http://bioinformatics.oxfordjournals.org/content/early/2016/10/20/bioinformatics.btw663.abstract)
5352

5453

5554

@@ -59,7 +58,7 @@ Issues
5958
======
6059

6160
Should you discover any issues with KAT, or wish to request a new feature please raise a `ticket here <https://github.com/TGAC/KAT/issues>`_.
62-
Alternatively, contact Daniel Mapleson at: daniel.mapleson@earlham.ac.uk; or Bernardo Clavijo at: [email protected].
61+
Alternatively, contact Daniel Mapleson at: d.mapleson@gmail.com; or Bernardo Clavijo at: [email protected].
6362
However, please consult the `Frequently Asked Questions <faq>`_ page first in case your
6463
question is already answered there.
6564

doc/source/walkthrough.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,8 @@ assembly completeness. To this end we bundle a script with kat called kat_dista
385385
in either a spectra-cn matrix file, or kat histogram file as input, then proceeds to identify peaks
386386
and fit distributions to each one. In the case of spectra-cn matrix files it also identifies peaks
387387
for each copy number for an assembly. Alternatively, for matrix files generated by KAT GCP, it will also identify
388-
peaks associated with GC content.
388+
peaks associated with GC content. Output from this tool consists of stdout logging as well as structured
389+
JSON output. In addition, plots of the fitted distributions can be requested using the *--plot* option.
389390

390391
The user can help to get correct predictions out of the tool by providing an approximate frequency for
391392
the homozygous part of the distribution. By default, this is assumed to be the last peak. For example,
@@ -401,7 +402,7 @@ might produce the following output for this tetraploid genome:
401402
.. image:: images/distanalysis_plot.png
402403
:scale: 100%
403404

404-
405+
As of KAT V2.4.0, this script is executed as a post-processing step to most KAT tools.
405406

406407
Finding repetitive regions in assemblies
407408
----------------------------------------

lib/Makefile.am

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ libkat_la_LDFLAGS = \
1111
-L../deps/boost/build/lib
1212

1313
libkat_la_SOURCES = \
14-
src/gnuplot_i.cc \
1514
src/matrix_metadata_extractor.cc \
1615
src/input_handler.cc \
1716
src/jellyfish_helper.cc \
@@ -21,7 +20,6 @@ library_includedir=$(includedir)/kat-@PACKAGE_VERSION@/kat
2120

2221
KI = $(top_srcdir)/lib/include/kat
2322
library_include_HEADERS = $(KI)/distance_metrics.hpp \
24-
$(KI)/gnuplot_i.hpp \
2523
$(KI)/input_handler.hpp \
2624
$(KI)/jellyfish_helper.hpp \
2725
$(KI)/kat_fs.hpp \

0 commit comments

Comments
 (0)