libedlib 1.2.4-2ubuntu1 source package in Ubuntu

Changelog

libedlib (1.2.4-2ubuntu1) focal; urgency=medium

  * Mark some symbols as optional.

 -- Matthias Klose <email address hidden>  Thu, 20 Feb 2020 12:01:33 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Debian Med
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Downloads

File Size SHA-256 Checksum
libedlib_1.2.4.orig.tar.gz 4.1 MiB ddc6892a41d7e4bcee048f282738b1522b67252ec276e4d75284b977fa8eb65d
libedlib_1.2.4-2ubuntu1.debian.tar.xz 5.9 KiB e49532cd1665f19214f7b63ccc3a1e2214b78b6314a61bbf4104a80fc4987b69
libedlib_1.2.4-2ubuntu1.dsc 2.2 KiB 38c34aa69277d454af2c69f08916f4d0ab2d5e1b03f2d92e4a61223ef02bdcf4

View changes file

Binary packages built by this source

edlib-aligner: No summary available for edlib-aligner in ubuntu hirsute.

No description available for edlib-aligner in ubuntu hirsute.

edlib-aligner-dbgsym: No summary available for edlib-aligner-dbgsym in ubuntu groovy.

No description available for edlib-aligner-dbgsym in ubuntu groovy.

libedlib-dev: No summary available for libedlib-dev in ubuntu hirsute.

No description available for libedlib-dev in ubuntu hirsute.

libedlib0: No summary available for libedlib0 in ubuntu hirsute.

No description available for libedlib0 in ubuntu hirsute.

libedlib0-dbgsym: No summary available for libedlib0-dbgsym in ubuntu hirsute.

No description available for libedlib0-dbgsym in ubuntu hirsute.

python3-edlib: library for sequence alignment using edit distance (Python3 module)

 A lightweight and super fast C/C++ library for sequence alignment using
 edit distance.
 .
 Calculating edit distance of two strings is as simple as:
 .
  edlibAlign("hello", 5, "world!", 6,
             edlibDefaultAlignConfig()).editDistance;
 Features
 .
  * Calculates edit distance (Levehnstein distance).
  * It can find optimal alignment path (instructions how to transform
    first sequence into the second sequence).
  * It can find just the start and/or end locations of alignment path -
    can be useful when speed is more important than having exact
    alignment path.
  * Supports multiple alignment methods: global(NW), prefix(SHW) and
    infix(HW), each of them useful for different scenarios.
  * You can extend character equality definition, enabling you to e.g.
    have wildcard characters, to have case insensitive alignment or to
    work with degenerate nucleotides.
  * It can easily handle small or very large sequences, even when finding
    alignment path, while consuming very little memory.
  * Super fast thanks to Myers's bit-vector algorithm.
 .
 This package contains the Python3 module.

python3-edlib-dbgsym: debug symbols for python3-edlib