Skip to content

Commit

Permalink
Fixed crash of --test!
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeigurevich committed Feb 5, 2018
1 parent babc496 commit add0e74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
-- Version history --

4.6.3
1. Fixed crash of BSS in MetaQUAST mode (introduced in v4.6.2).
1. Fixed crash of quast.py --test (introduced in v4.6.2).

2. Proper float/integer division in both Python2 and Python3 (
affected the number of scaffold gap size misassemblies in Python2).
2. Fixed crash of BSS in MetaQUAST mode (introduced in v4.6.2).

3. Proper float/integer division in both Python2 and Python3 (may affect
the number of scaffold gap size misassemblies in Python2).


4.6.2
Expand Down
4 changes: 2 additions & 2 deletions quast_libs/ca_utils/align_contigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from __future__ import with_statement

import os
from os.path import isfile, basename
from os.path import isfile, join, basename, dirname
import datetime
import shutil
import sys
Expand All @@ -19,7 +19,7 @@
create_nucmer_output_dir, clean_tmp_files, get_installed_emem, reset_aligner_selection, draw_mummer_plot

from quast_libs.log import get_logger
from quast_libs.qutils import is_python2, md5
from quast_libs.qutils import is_python2, md5, safe_create

logger = get_logger(qconfig.LOGGER_DEFAULT_NAME)

Expand Down

0 comments on commit add0e74

Please sign in to comment.