kmc 3.2.4+dfsg-1 source package in Ubuntu

Changelog

kmc (3.2.4+dfsg-1) unstable; urgency=medium

  * New upstream version.

 -- Sascha Steinbiss <email address hidden>  Sat, 17 Feb 2024 15:01:25 +0100

Upload details

Uploaded by:
Debian Med
Uploaded to:
Sid
Original maintainer:
Debian Med
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Downloads

File Size SHA-256 Checksum
kmc_3.2.4+dfsg-1.dsc 2.2 KiB 5f91b01b4f54d35fa9e244b3a31316fbbda343ca4c6ac4d72235ece891c81c17
kmc_3.2.4+dfsg.orig.tar.xz 399.1 KiB c3c662ed458eefe75d718a8b9c7c2d1c46853a5215694202e9e7f044eae70859
kmc_3.2.4+dfsg-1.debian.tar.xz 33.1 KiB ee1347f791fac3abe653cd2dc9094a0683002a1eca7fc27a51d03e54ce6b6ac0

Available diffs

No changes file available.

Binary packages built by this source

kmc: count kmers in genomic sequences

 The kmc software is designed for counting k-mers (sequences of
 consecutive k symbols) in a set of reads. K-mer counting is
 important for many bioinformatics applications, e.g. developing de Bruijn
 graph assemblers.
 .
 Building de Bruijn graphs is a commonly used approach for genome
 assembly with data from second-generation sequencing.
 Unfortunately, sequencing errors (frequent in practice)
 result in huge memory requirements for de Bruijn graphs, as well
 as long build time. One of the popular approaches to handle this
 problem is filtering the input reads in such a way that unique k-mers
 (very likely obtained as a result of an error) are discarded.
 .
 Thus, KMC scans the raw reads and produces a compact representation
 of all non-unique reads accompanied with number of their occurrences.
 The algorithm implemented in KMC makes use mostly of disk space rather
 than RAM, which allows one to use KMC even on rather typical personal
 computers. When run on high-end servers (what is necessary for KMC
 competitors) it outperforms them in both memory requirements and
 speed of computation. The disk space necessary for computation is in
 order of the size of input data (usually it is smaller).

kmc-dbgsym: debug symbols for kmc
libkmc-dev: library to access KMC k-mer count files

 The kmc software is designed for counting k-mers (sequences of
 consecutive k symbols) in a set of reads. K-mer counting is
 important for many bioinformatics applications, e.g. developing de Bruijn
 graph assemblers.
 .
 This package contains the C++ library headers for accessing kmc's output
 file format.