Skip to content

Commit

Permalink
Merge pull request #320 from CGATOxford/{IS}_UMIClusterer_export
Browse files Browse the repository at this point in the history
export UMIClusterer from root namespace
  • Loading branch information
IanSudbery committed Feb 14, 2019
2 parents 1aebd69 + d32c4cc commit 1207720
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions umi_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
from __future__ import absolute_import

from umi_tools.version import __version__

# Import happens on setup, but on setup networks dependencies won't have
# been installed. So if we can't import, don't worry about it.]
try:
from umi_tools.network import UMIClusterer
except ImportError:
pass

0 comments on commit 1207720

Please sign in to comment.