Skip to content
Commits on Source (6)
......@@ -2,4 +2,4 @@ bcalm (2.2.1-1) UNRELEASED; urgency=medium
* Initial release (Closes: #<bug>)
-- Shayan Doust <hello@shayandoust.me> Mon, 23 Sep 2019 05:48:54 +0100
-- Shayan Doust <hello@shayandoust.me> Fri, 27 Sep 2019 08:49:22 +0200
......@@ -7,8 +7,9 @@ Build-Depends: debhelper-compat (= 12),
libgatbcore-dev,
libboost-dev,
libhdf5-dev,
zlib1g-dev
Standards-Version: 4.3.0
zlib1g-dev,
cmake
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/med-team/bcalm
Vcs-Git: https://salsa.debian.org/med-team/bcalm.git
Homepage: https://github.com/GATB/bcalm
......@@ -21,3 +22,6 @@ Depends: ${shlibs:Depends},
Description: de Bruijn compaction in low memory
A bioinformatics tool for constructing the compacted de Bruijn graph
from sequencing data.
.
This is the parallel version of the BCALM software using gatb-core
library.
......@@ -3,6 +3,7 @@ set -e
pkg=bcalm
export LC_ALL=C.UTF-8
if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
# shellcheck disable=SC2064
......