-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.4.2 - bug fixes, feature updates, unit tests, ci/cd updates
- Loading branch information
1 parent
2606428
commit 8e9c0dc
Showing
18 changed files
with
46 additions
and
41 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
""" pySAR software metadata. """ | ||
__name__ = 'pySAR' | ||
__version__ = "2.4.1" | ||
__version__ = "2.4.2" | ||
__description__ = 'A Python package used to analysis Sequence Activity Relationships (SARs) of protein sequences and their mutants using Machine Learning.' | ||
__author__ = 'AJ McKenna, https://github.com/amckenna41' | ||
__author__ = 'AJ McKenna: https://github.com/amckenna41' | ||
__authorEmail__ = '[email protected]' | ||
__maintainer__ = "AJ McKenna" | ||
__license__ = 'MIT' | ||
__url__ = 'https://github.com/amckenna41/pySAR' | ||
__download_url__ = "https://github.com/amckenna41/pySAR/archive/refs/heads/main.zip" | ||
__status__ = "Production" | ||
__keywords__ = ["bioinformatics", "protein engineering", "python", "pypi", "machine learning", \ | ||
"directed evolution", "drug discovery", "sequence activity relationships", "SAR", "aaindex", "protein descriptors"] | ||
"directed evolution", "drug discovery", "sequence activity relationships", "SAR", "aaindex", "protpy", "protein descriptors"] | ||
__test_suite__ = "tests" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = PySAR | ||
version = 2.4.1 | ||
version = 2.4.2 | ||
description = Analysing Sequence Activity Relationships (SARs) of protein sequences and their mutants using Machine Learning. | ||
author = AJ McKenna | ||
author_email = [email protected] | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,14 +60,14 @@ def setUp(self): | |
if not (os.path.isdir(self.test_output_folder)): | ||
os.makedirs(self.test_output_folder) | ||
|
||
@unittest.skip("Skipping metadata tests.") | ||
# @unittest.skip("Skipping metadata tests.") | ||
def test_pySAR_metadata(self): | ||
""" Testing correct pySAR version and metadata. """ | ||
self.assertEqual(pysar_.__version__, "2.4.1", | ||
self.assertEqual(pysar_.__version__, "2.4.2", | ||
"pySAR version is not correct, got: {}.".format(pysar_.__version__)) | ||
self.assertEqual(pysar_.__name__, "pySAR", | ||
"pySAR software name is not correct, got: {}.".format(pysar_.__name__)) | ||
self.assertEqual(pysar_.__author__, "AJ McKenna, https://github.com/amckenna41", | ||
self.assertEqual(pysar_.__author__, "AJ McKenna: https://github.com/amckenna41", | ||
"pySAR author is not correct, got: {}.".format(pysar_.__author__)) | ||
self.assertEqual(pysar_.__authorEmail__, "[email protected]", | ||
"pySAR author email is not correct, got: {}.".format(pysar_.__authorEmail__)) | ||
|
@@ -83,7 +83,7 @@ def test_pySAR_metadata(self): | |
"pySAR maintainer is not correct, got: {}.".format(pysar_.__license__)) | ||
self.assertEqual(pysar_.__keywords__, ["bioinformatics", "protein engineering", "python", \ | ||
"pypi", "machine learning", "directed evolution", "drug discovery", "sequence activity relationships", \ | ||
"SAR", "aaindex", "protein descriptors"], "pySAR keywords is not correct, got: {}.".format(pysar_.__keywords__)) | ||
"SAR", "aaindex", "protpy", "protein descriptors"], "pySAR keywords is not correct, got: {}.".format(pysar_.__keywords__)) | ||
|
||
def test_pySAR(self): | ||
""" Testing pySAR intialisation process and associated methods & attributes. """ | ||
|