Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff1995 committed Feb 7, 2023
1 parent 2c50ea3 commit 6d4948b
Show file tree
Hide file tree
Showing 14 changed files with 2,352 additions and 1,635 deletions.
20 changes: 16 additions & 4 deletions Cell_BLAST/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,29 @@
from importlib.metadata import version
except ModuleNotFoundError:
from pkg_resources import get_distribution

version = lambda name: get_distribution(name).version

from .utils import in_ipynb

if not in_ipynb():
import matplotlib
matplotlib.use("agg")

from . import (blast, config, data, directi, latent, metrics, prob,
rebuild, rmbatch, utils, weighting)
matplotlib.use("agg")

from . import (
blast,
config,
data,
directi,
latent,
metrics,
prob,
rebuild,
rmbatch,
utils,
weighting,
)

name = "Cell_BLAST"
__copyright__ = "2022, Gao Lab"
Expand All @@ -34,5 +46,5 @@
"rebuild",
"rmbatch",
"utils",
"weighting"
"weighting",
]
Loading

0 comments on commit 6d4948b

Please sign in to comment.