Description: interface for the SAM/BAM sequence alignment and mapping format
Pysam is a python module for reading and manipulating Samfiles. It's a
lightweight wrapper of the samtools C-API.
+
+Package: python-pysam-tests
+Architecture: any
+Priority: extra
+Enhances: python-pysam
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ ${python:Depends},
+ python-pysam,
+ python-pyrex
+Description: interface for the SAM/BAM sequence alignment and mapping format (test data)
+ Pysam is a python module for reading and manipulating Samfiles. It's a
+ lightweight wrapper of the samtools C-API.
+ .
+ This package contains the data provided by upstream to run the pysam
+ test suite.
--- /dev/null
+Pysam for Debian
+================
+
+To verify whether your python-pysam modules are working correctly
+you can run the test suite manually via
+
+ cd /var/lib/pysam/tests
+ ./pysam_test.py
+
+ -- Andreas Tille <tille@debian.org> Fri, 07 Feb 2014 18:29:40 +0100
+
--- /dev/null
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+ chmod a+w /var/lib/pysam/tests
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#