Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
* Non-maintainer upload.
· 76a7928c
Thomas Goirand
authored
Nov 03, 2019
* Add py3-compat.patch.
76a7928c
Switched package to Python 3 (Closes: #936381, #943005).
· 9473e9c3
Thomas Goirand
authored
Nov 03, 2019
9473e9c3
Expand all
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
9473e9c3
deepnano (0.0+git20170813.e8a621e-3.1) unstable; urgency=medium
* Non-maintainer upload.
* Add py3-compat.patch.
* Switched package to Python 3 (Closes: #936381, #943005).
-- Thomas Goirand <zigo@debian.org> Sun, 03 Nov 2019 17:22:33 +0100
deepnano (0.0+git20170813.e8a621e-3) unstable; urgency=medium
* Use less data for autopkgtest
...
...
debian/control
View file @
9473e9c3
...
...
@@ -5,10 +5,10 @@ Uploaders: Çağrı ULAŞ <cagriulas@gmail.com>,
Section: science
Priority: optional
Build-Depends: debhelper (>= 12~),
python-all,
python
3
-all,
dh-python,
python-markdown,
python-theano
python
3
-markdown,
python
3
-theano
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/deepnano
Vcs-Git: https://salsa.debian.org/med-team/deepnano.git
...
...
@@ -16,15 +16,15 @@ Homepage: https://bitbucket.org/vboza/deepnano
Package: deepnano
Architecture: any
Depends: ${python:Depends},
Depends: ${python
3
:Depends},
${misc:Depends},
${shlibs:Depends},
python-h5py,
python-numpy,
python-dateutil,
python-theano,
python
3
-h5py,
python
3
-numpy,
python
3
-dateutil,
python
3
-theano,
deepnano-data
Recommends: python-watchdog
Recommends: python
3
-watchdog
Description: alternative basecaller for MinION reads of genomic sequences
DeepNano is alternative basecaller for Oxford Nanopore MinION reads
based on deep recurrent neural networks.
...
...
debian/patches/py3-compat.patch
0 → 100644
View file @
9473e9c3
This diff is collapsed.
Click to expand it.
debian/patches/series
View file @
9473e9c3
she_bang.patch
path_align_2d.patch
py3-compat.patch
debian/patches/she_bang.patch
View file @
9473e9c3
...
...
@@ -5,14 +5,14 @@ Description: Add missing #! line
--- a/basecall.py
+++ b/basecall.py
@@ -1,3 +1,4 @@
+#!/usr/bin/python
+#!/usr/bin/python
3
import argparse
from rnn_fin import RnnPredictor
import h5py
--- a/basecall_no_metrichor.py
+++ b/basecall_no_metrichor.py
@@ -1,3 +1,4 @@
+#!/usr/bin/python
+#!/usr/bin/python
3
import argparse
from rnn_fin import RnnPredictor
import h5py
debian/rules
View file @
9473e9c3
...
...
@@ -5,11 +5,11 @@
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --with python
2
dh $@ --with python
3
override_dh_auto_build:
dh_auto_build
markdown
_py
-f README.html README.md
python3 -m
markdown -f README.html README.md
g++ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -std=gnu++0x align_2d.cc -o align_2d
g++ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -std=gnu++0x training/realign.cc -o realign
...
...