Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
3.1.2: fixed import error in py2
  • Loading branch information
msbentsen committed Apr 8, 2019
1 parent 75d4b83 commit e1a7c91
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
3 changes: 2 additions & 1 deletion setup.py
@@ -1,5 +1,6 @@
import os
import re
import setuptools
from setuptools import setup

#Path of setup file to establish version
Expand Down Expand Up @@ -38,7 +39,7 @@ def readme():
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.4'
'Programming Language :: Python '
],
zip_safe=False,
include_package_data=True)
2 changes: 1 addition & 1 deletion uropa/__init__.py
@@ -1 +1 @@
__version__ = "3.1.1"
__version__ = "3.1.2"
2 changes: 0 additions & 2 deletions uropa/annotation.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""Contains code for the annotation process"""
import pysam
from functools import reduce
Expand Down
9 changes: 3 additions & 6 deletions uropa/uropa.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3
# coding: utf-8
"""
uropa.py: UROPA - Universal RObust Peak Annotator
Expand All @@ -9,7 +7,6 @@
@email: mario.looso@mpi-bn.mpg.de
"""


import os
import sys
import json
Expand All @@ -25,9 +22,9 @@
import pysam

#Import internal functions
from uropa.utils import *
from uropa.annotation import *
from uropa import __version__ as VERSION
from .utils import *
from .annotation import *
from .__init__ import __version__ as VERSION

def restricted_float(f, f_min, f_max):
f = float(f)
Expand Down
1 change: 0 additions & 1 deletion uropa/utils.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""Contains helper functions for UROPA """

import json
Expand Down

0 comments on commit e1a7c91

Please sign in to comment.