Skip to content

Commit

Permalink
prepare release for 1.0.9 (1.0.1 tomorrow)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaojieqiu committed Apr 4, 2022
1 parent cc4a538 commit e9acaf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
author = "Xiaojie Qiu, Yan Zhang, Ke Ni"

# The full version, including alpha/beta/rc tags
release = "1.0.0"
release = "1.0.9"

# -- General configuration ---------------------------------------------------

Expand Down
8 changes: 4 additions & 4 deletions dynamo/preprocessing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
filter_cells_by_outliers,
filter_cells_legacy,
filter_genes_by_clusters_,
)
from .preprocess import filter_genes_by_outliers
from .preprocess import filter_genes_by_outliers as filter_genes
from .preprocess import (
filter_genes_by_outliers,
get_svr_filter,
highest_frac_genes,
normalize_cell_expr_by_size_factors_legacy,
Expand All @@ -35,7 +32,10 @@
top_pca_genes,
)

filter_cells = filter_cells_by_outliers
filter_genes = filter_genes_by_outliers
log1p = log1p_adata
normalize_cells = normalize_cell_expr_by_size_factors

from .preprocess_monocle_utils import estimate_dispersion, top_table
from .Preprocessor import Preprocessor
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if __name__ == "__main__":
setup(
name="dynamo-release",
version="v1.0.0",
version="v1.0.9",
python_requires=">=3.7",
install_requires=[l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()], # 'yt>=3.5.1',
extras_require={
Expand Down

0 comments on commit e9acaf5

Please sign in to comment.