kmc 2.0+dfsg-2 source package in Ubuntu

Changelog

kmc (2.0+dfsg-2) unstable; urgency=medium

  * Set BOOST_LIB path fit for any arch
    Closes: #793843
  * Drop -m64 option
    Closes: #793835

 -- Andreas Tille <email address hidden>  Tue, 28 Jul 2015 08:05:11 +0200

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

Downloads

File Size SHA-256 Checksum
kmc_2.0+dfsg-2.dsc 1.9 KiB fd014b4306ab9629d6a6207cc282b9264ed0b1176f7e07330471bf96b781361f
kmc_2.0+dfsg.orig.tar.gz 71.9 KiB 4e80e70050bee62f71ce2781504350d5a7f1a3d96fcaa7fd2759fd7682d08fbe
kmc_2.0+dfsg-2.debian.tar.xz 7.2 KiB 60ea3330b3f71ff4254575d1526beeaaeac6420a00ed34216eceddcdc5a47b7c

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).