Commit ece208df authored by Andreas Tille's avatar Andreas Tille
Browse files

Initial packaging

parent f70216a8
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
kma (0.14.4+git20180611.7e14ef6-1) UNRELEASED; urgency=medium

  * Initial release (Closes: #<bug>)

 -- Andreas Tille <tille@debian.org>  Thu, 07 Jun 2018 21:55:00 +0200

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
11

debian/control

0 → 100644
+24 −0
Original line number Diff line number Diff line
Source: kma
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/kma
Vcs-Git: https://salsa.debian.org/med-team/kam.git
Homepage: https://bitbucket.org/genomicepidemiology/kma

Package: kme
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: mapping genomic sequences to raw reads directly against redundant databases
 KMA is mapping a method designed to map raw reads directly against
 redundant databases, in an ultra-fast manner using seed and extend. KMA
 is particulary good at aligning high quality reads against highly
 redundant databases, where unique matches often does not exist. It works
 for long low quality reads as well, such as those from Nanopore. Non-
 unique matches are resolved using the "ConClave" sorting scheme, and a
 consensus sequence are outputtet in addition to other common attributes,
 based on our users demands.

debian/copyright

0 → 100644
+25 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: kma
Upstream-Contact: plan@dtu.dk
Source: https://bitbucket.org/genomicepidemiology/kma.git

Files: *
Copyright: 2015-2017, Philip Clausen, Technical University of Denmark
License: Apache-2.0

Files: debian/*
Copyright: 2018 Andreas Tille <tille@debian.org>
License: Apache-2.0

License: Apache-2.0
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 .
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 .
 On Debian systems you can find the full text of the Apache-2.0
 license at /usr/share/common-licenses/Apache-2.0.

debian/rules

0 → 100755
+8 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

# DH_VERBOSE := 1

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@
Loading