Skip to content

Commit 89ba319

Browse files
committed
Merge branch 'master' of https://github.com/lhqing/ALLCools
2 parents 87c84bb + 41ee9d1 commit 89ba319

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ default_stages:
77
minimum_pre_commit_version: 2.16.0
88
repos:
99
- repo: https://github.com/psf/black
10-
rev: 23.3.0
10+
rev: 24.3.0
1111
hooks:
1212
- id: black
1313
- repo: https://github.com/pre-commit/mirrors-prettier
14-
rev: v3.0.0-alpha.9-for-vscode
14+
rev: v4.0.0-alpha.8
1515
hooks:
1616
- id: prettier
1717
- repo: https://github.com/asottile/blacken-docs
18-
rev: 1.14.0
18+
rev: 1.16.0
1919
hooks:
2020
- id: blacken-docs
2121
- repo: https://github.com/PyCQA/isort
22-
rev: 5.12.0
22+
rev: 5.13.2
2323
hooks:
2424
- id: isort
2525
- repo: https://github.com/asottile/yesqa
@@ -34,7 +34,7 @@ repos:
3434
- flake8-bugbear
3535
- flake8-blind-except
3636
- repo: https://github.com/pre-commit/pre-commit-hooks
37-
rev: v4.4.0
37+
rev: v4.6.0
3838
hooks:
3939
- id: detect-private-key
4040
- id: check-ast
@@ -44,7 +44,7 @@ repos:
4444
- id: trailing-whitespace
4545
- id: check-case-conflict
4646
- repo: https://github.com/PyCQA/autoflake
47-
rev: v2.2.0
47+
rev: v2.3.1
4848
hooks:
4949
- id: autoflake
5050
args:
@@ -53,7 +53,7 @@ repos:
5353
- --remove-unused-variable
5454
- --ignore-init-module-imports
5555
- repo: https://github.com/PyCQA/flake8
56-
rev: 6.0.0
56+
rev: 7.0.0
5757
hooks:
5858
- id: flake8
5959
additional_dependencies:
@@ -64,7 +64,7 @@ repos:
6464
- flake8-bugbear
6565
- flake8-blind-except
6666
- repo: https://github.com/asottile/pyupgrade
67-
rev: v3.7.0
67+
rev: v3.15.2
6868
hooks:
6969
- id: pyupgrade
7070
args: [--py3-plus, --py38-plus, --keep-runtime-typing]

ALLCools/_open.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3131
THE SOFTWARE.
3232
"""
33+
3334
import codecs
3435
import gzip
3536
import os

ALLCools/clustering/balanced_pca.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
A class allow user provide fitted model and just transform MCDS to adata with PCs.
55
"""
6+
67
import anndata
78
import joblib
89
import numpy as np

ALLCools/clustering/doublets/coverage_doublets.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
1313
"""
1414

15-
1615
import json
1716
import pathlib
1817
from collections import defaultdict

ALLCools/mcds/mcds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def open(
293293
ds = xr.open_dataset(
294294
_final_paths[0],
295295
engine=engine,
296-
**kwargs
296+
**kwargs,
297297
# chunks=chunks # do not apply chunks parameter here, apply in the end
298298
)
299299
else:

0 commit comments

Comments
 (0)