Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fixed Python3 incompatibility
· 9dfe1f42
Steffen Möller
authored
Jan 21, 2019
9dfe1f42
Demoted seqcluster as 'recommended'
· 22a63cd0
Steffen Möller
authored
Jan 22, 2019
22a63cd0
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
22a63cd0
bcbio (1.1.2-2) unstable; urgency=medium
* Found Python3 incompatbility. Upstream has it already.
-- Steffen Moeller <moeller@debian.org> Mon, 21 Jan 2019 23:56:26 +0100
bcbio (1.1.2-1) unstable; urgency=medium
* Initial release (Closes: #903386)
...
...
debian/control
View file @
22a63cd0
...
...
@@ -31,8 +31,8 @@ Package: python3-bcbio
Architecture: all
Depends: ${python3:Depends},
${misc:Depends},
python3-seqcluster,
python3-tornado
Recommends: python3-seqcluster
Description: library for analysing high-throughput sequencing data
This package installs the Python 3 libraries of the bcbio-nextgen
toolkit implementing best-practice pipelines for fully automated high
...
...
debian/patches/python3.patch
0 → 100644
View file @
22a63cd0
Index: bcbio/bcbio/qc/contamination.py
===================================================================
--- bcbio.orig/bcbio/qc/contamination.py
+++ bcbio/bcbio/qc/contamination.py
@@ -39,7 +39,7 @@
def _generate_estimates(bam_file, out_ba
cmd += _get_input_args(bam_file, data, out_base, background)
try:
do.run(cmd, "VerifyBamID contamination checks")
- except subprocess.CalledProcessError, msg:
+ except subprocess.CalledProcessError as msg:
def allowed_errors(l):
return (l.find("Insufficient Available markers") >= 0 or
l.find("No reads found in any of the regions") >= 0)
debian/patches/series
0 → 100644
View file @
22a63cd0
python3.patch