Skip to content

Commit

Permalink
Merge pull request #159 from zktuong/v0.2.4
Browse files Browse the repository at this point in the history
slicing and check contigs
  • Loading branch information
zktuong committed Jul 6, 2022
2 parents 312cca5 + 85e8e30 commit 04586e2
Show file tree
Hide file tree
Showing 46 changed files with 11,318 additions and 4,784 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -27,7 +27,7 @@ Original preprint:

Illustration of the `Dandelion` class slots

![](docs/notebooks/img/dandelion_class.png)
![](docs/notebooks/img/dandelion_class2.png)

Please refer to the [documentation](https://sc-dandelion.readthedocs.io/) or the notebooks [here](https://nbviewer.jupyter.org/github/zktuong/dandelion/tree/latest/docs/notebooks/):

Expand Down
46 changes: 23 additions & 23 deletions dandelion/__init__.py
Expand Up @@ -2,47 +2,47 @@
# @Author: kt16
# @Date: 2020-05-12 18:11:20
# @Last Modified by: Kelvin
# @Last Modified time: 2022-06-18 14:33:17
# @Last Modified time: 2022-07-06 08:09:19
"""init module."""
from . import preprocessing as pp
from . import utilities as utl
from . import tools as tl
from . import plotting as pl
from .utilities import (
read_pkl,
read_h5,
concat,
Dandelion,
from_scirpy,
load_data,
read_10x_airr,
read_10x_vdj,
from_scirpy,
read_h5,
read_h5ddl,
read_pkl,
to_scirpy,
Dandelion,
update_metadata,
concat,
load_data,
)
from .logging import __version__, __author__, __email__, __classifiers__
from .logging import __author__, __email__, __classifiers__, __version__
from . import logging

read_h5ddl = read_h5

__all__ = [
"pp",
"utl",
"tl",
"__author__",
"__classifiers__",
"__email__",
"__version__",
"concat",
"Dandelion",
"from_scirpy",
"load_data",
"logging",
"pl",
"read_pkl",
"read_h5",
"pp",
"read_10x_airr",
"read_10x_vdj",
"from_scirpy",
"read_h5",
"read_pkl",
"tl",
"to_scirpy",
"Dandelion",
"update_metadata",
"concat",
"load_data",
"__version__",
"__author__",
"__email__",
"__classifiers__",
"logging",
"utl",
]
14 changes: 7 additions & 7 deletions dandelion/logging/__init__.py
Expand Up @@ -2,16 +2,16 @@
# @Author: kt16
# @Date: 2020-05-12 18:11:20
# @Last Modified by: Kelvin
# @Last Modified time: 2022-06-18 14:30:45
# @Last Modified time: 2022-07-03 21:53:35
"""init module."""
from ._logging import print_versions, print_header
from ._metadata import __version__, __author__, __email__, __classifiers__
from ._logging import print_header, print_versions
from ._metadata import __author__, __email__, __classifiers__, __version__

__all__ = [
"print_versions",
"print_header",
"__version__",
"__author__",
"__email__",
"__classifiers__",
"__email__",
"__version__",
"print_header",
"print_versions",
]
2 changes: 1 addition & 1 deletion dandelion/logging/_logging.py
Expand Up @@ -2,7 +2,7 @@
# @Author: Kelvin
# @Date: 2021-02-06 13:18:58
# @Last Modified by: Kelvin
# @Last Modified time: 2022-06-18 14:31:46
# @Last Modified time: 2022-07-03 21:54:08
"""logging module."""
from typing import Sequence

Expand Down
20 changes: 9 additions & 11 deletions dandelion/plotting/__init__.py
Expand Up @@ -2,24 +2,22 @@
# @Author: Kelvin
# @Date: 2020-05-13 23:21:45
# @Last Modified by: Kelvin
# @Last Modified time: 2022-06-18 14:30:52
# @Last Modified time: 2022-07-04 08:29:04
"""init module."""
from ._plotting import (
random_palette,
clone_network,
barplot,
stackedbarplot,
spectratype,
clone_rarefaction,
clone_network,
clone_overlap,
clone_rarefaction,
spectratype,
stackedbarplot,
)

__all__ = [
"random_palette",
"clone_network",
"barplot",
"stackedbarplot",
"spectratype",
"clone_rarefaction",
"clone_network",
"clone_overlap",
"clone_rarefaction",
"spectratype",
"stackedbarplot",
]

0 comments on commit 04586e2

Please sign in to comment.