Package: unicycler / 0.5.1+dfsg-3

Metadata

Package Version Patches format
unicycler 0.5.1+dfsg-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
spades.patch | (download)

README.md | 4 2 + 2 - 0 !
setup.py | 2 1 + 1 - 0 !
test/overlap_removal_test.py | 2 1 + 1 - 0 !
test/test_dependencies.py | 8 4 + 4 - 0 !
test/test_misc.py | 4 2 + 2 - 0 !
unicycler/misc.py | 4 2 + 2 - 0 !
unicycler/unicycler.py | 6 3 + 3 - 0 !
7 files changed, 15 insertions(+), 15 deletions(-)

 spades is in debian at /usr/bin/spades
install_wo_extra_steps.patch | (download)

setup.py | 30 15 + 15 - 0 !
1 file changed, 15 insertions(+), 15 deletions(-)

 skip extra steps (make distclean and make) while installing as they were done earlier
append_flags | (download)

Makefile | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 inherit and use ldflags and cppflags
leftover syntax warnings.patch | (download)

unicycler/bridge_common.py | 2 1 + 1 - 0 !
unicycler/bridge_long_read.py | 2 1 + 1 - 0 !
unicycler/log.py | 2 1 + 1 - 0 !
3 files changed, 3 insertions(+), 3 deletions(-)

 fix leftover python syntaxwarnings.
 While upstream version 0.5.1 fixed several SyntaxWarnings associated to
 the console logotype, there were still leftover SyntaxWarnings,
 captured for instance upon Debian package installation:
 .
  Setting up unicycler (0.5.1+dfsg-1) ...
  /usr/lib/python3/dist-packages/unicycler/bridge_common.py:43: SyntaxWarning: invalid escape sequence '\l'
    """
  /usr/lib/python3/dist-packages/unicycler/bridge_long_read.py:619: SyntaxWarning: invalid escape sequence '\c'
    """
  /usr/lib/python3/dist-packages/unicycler/log.py:194: SyntaxWarning: invalid escape sequence '\['
    return re.sub('\033\[2m', '', text)
 .
 This change sets the raw string prefix for the two affected docstrings,
 and also escapes a backaslash in a regex that also includes a
 legitimate \033 escape sequence.