-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bug with multiple regions in PCA and snp_allele_counts (#338)
* fix bug with multiple regions * fix exception handling * upgrade pre-commit and relint
- Loading branch information
Showing
18 changed files
with
113 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
[flake8] | ||
ignore = | ||
E203 # whitespace before ':' - doesn't work well with black | ||
E402 # module level import not at top of file | ||
E501 # line too long - let black worry about that | ||
E731 # do not assign a lambda expression, use a def | ||
W503 # line break before binary operator | ||
# whitespace before ':' - doesn't work well with black | ||
E203 | ||
# module level import not at top of file | ||
E402 | ||
# line too long - let black worry about that | ||
E501 | ||
# do not assign a lambda expression, use a def | ||
E731 | ||
# line break before binary operator | ||
W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
# https://pre-commit.com/ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
rev: v4.4.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
# isort should run before black as black sometimes tweaks the isort output | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.10.1 | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
# https://github.com/python/black#version-control-integration | ||
- repo: https://github.com/psf/black | ||
rev: 22.10.0 | ||
rev: 23.1.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/keewis/blackdoc | ||
rev: v0.3.8 | ||
hooks: | ||
- id: blackdoc | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: 5.0.4 | ||
rev: 6.0.0 | ||
hooks: | ||
- id: flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.