Skip to content

Commit

Permalink
{AH} import utils with package name
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasHeger committed Jan 18, 2020
1 parent 9ff3144 commit c818db5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions doc/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Release 0.15.4
Bugfix release. Principal reason for release is to update cython
version in order to fix pip install pysam with python 3.8.

* [#879] Fix add_meta function in libcbcf.pyx, so meta-information
lines in header added with this function have double-quoting rules
in accordance to rules specified in VCF4.2 and VCF4.3 specifications
* [#863] Force arg to bytes to support non-ASCII encoding
* [#875] Bump minimum Cython version
* [#868] Prevent segfault on Python 2.7 AlignedSegment.compare(other=None)
Expand Down
2 changes: 1 addition & 1 deletion pysam/bcftools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from utils import PysamDispatcher
from pysam.utils import PysamDispatcher

BCFTOOLS_DISPATCH = [
"index",
Expand Down
2 changes: 1 addition & 1 deletion pysam/samtools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from utils import PysamDispatcher
from pysam.utils import PysamDispatcher

# samtools command line options to export in python
#
Expand Down

0 comments on commit c818db5

Please sign in to comment.