Skip to content

Commit

Permalink
v0.3.0.0 -> v.0.4.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: JasonMendoza2008 <[email protected]>
  • Loading branch information
JasonMendoza2008 committed Feb 27, 2023
1 parent d4d7d91 commit 3df1c83
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below. Lhotte, R., & Taupin, J. (2022). Physicochemical Amino acid
Replacement Distances (PARD) package (Version 0.3.0.0) [Computer software].
Replacement Distances (PARD) package (Version 0.4.0.0) [Computer software].
https://doi.org/10.5281/zenodo.7013169"
authors:
- family-names: Lhotte
Expand All @@ -10,7 +10,7 @@ authors:
given-names: Jean-Luc
orcid: https://orcid.org/0000-0002-5766-046X
title: Physicochemical Amino acid Replacement Distances (PARD) package
version: 0.3.0.0
version: 0.4.0.0
doi: 10.5281/zenodo.7013169
link: https://github.com/MICS-Lab/pard
date-released: 2022-08-20
38 changes: 28 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,32 +140,50 @@ which are the correct values


#### Unit tests details
Coverage
```
---------- coverage: platform win32, python 3.10.2-final-0 -----------
Name Stmts Miss Cover
----------------------------------------------------------------
pard\__init__.py 3 0 100%
pard\_handling_3_letter_code_decorator.py 18 2 89%
pard\_raw_python_dictionaries.py 53 0 100%
pard\_raw_python_dictionaries.py 61 32 48%
pard\epstein.py 7 0 100%
pard\experimental_exchangeability.py 10 0 100%
pard\grantham.py 5 0 100%
pard\koshi_goldstein.py 39 2 95%
pard\koshi_goldstein.py 55 24 56%
pard\miyata.py 5 0 100%
pard\sneath.py 5 0 100%
tests\__init__.py 0 0 100%
tests\test_epstein.py 46 0 100%
tests\test_experimental_exchangeability.py 30 0 100%
tests\test_grantham.py 25 0 100%
tests\test_koshi_goldstein.py 60 0 100%
tests\test_koshi_goldstein.py 108 50 54%
tests\test_miyata.py 25 0 100%
tests\test_pard.py 3 0 100%
tests\test_raw_python_dictionaries.py 24 0 100%
tests\test_raw_python_dictionaries.py 20 11 45%
tests\test_sneath.py 21 0 100%
unit_tests_mypy.py 4 4 0%
unit_tests_simple.py 4 4 0%
unit_tests_mypy.py 5 5 0%
unit_tests_simple.py 5 5 0%
----------------------------------------------------------------
TOTAL 387 12 97%
TOTAL 457 129 72%
```

#### pytest
```
platform win32 -- Python 3.11.1, pytest-7.2.0, pluggy-1.0.0
plugins: anyio-3.6.2, mypy-0.10.3
collected 14 items
tests\test_epstein.py . [ 7%]
tests\test_experimental_exchangeability.py . [ 14%]
tests\test_grantham.py . [ 21%]
tests\test_koshi_goldstein.py ....... [ 71%]
tests\test_miyata.py . [ 78%]
tests\test_pard.py . [ 85%]
tests\test_raw_python_dictionaries.py . [ 92%]
tests\test_sneath.py . [100%]
============================= 14 passed in 0.06s ==============================
```

#### mypy detail
Expand All @@ -186,7 +204,7 @@ If you use this software, please cite it as below.

`
Lhotte, R. & Taupin, J. (2022).
Physicochemical Amino acid Replacement Distances (PARD) package (Version 0.3.0.0) [Computer software].
Physicochemical Amino acid Replacement Distances (PARD) package (Version 0.4.0.0) [Computer software].
https://doi.org/10.5281/zenodo.7013169
`

Expand All @@ -198,7 +216,7 @@ https://doi.org/10.5281/zenodo.7013169
doi = {10.5281/zenodo.7013169},
month = {8},
title = {{Physicochemical Amino acid Replacement Distances (PARD) package}},
version = {0.3.0.0},
version = {0.4.0.0},
year = {2022}
}
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pard"
version = "0.3.0.0"
version = "0.4.0.0"
description = "Physicochemical Amino acid Replacement Distances"
authors = ["JasonMendoza2008 <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pard.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version() -> None:
assert __version__ == '0.3.0.0'
assert __version__ == '0.4.0.0'

0 comments on commit 3df1c83

Please sign in to comment.