-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add authorship to predict submodules
- Loading branch information
Showing
3 changed files
with
18 additions
and
0 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 |
---|---|---|
|
@@ -14,6 +14,12 @@ | |
|
||
__all__ = ['Rhapsody', 'calcPredictions'] | ||
|
||
__author__ = "Luca Ponzoni" | ||
__date__ = "December 2019" | ||
__maintainer__ = "Luca Ponzoni" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
||
class Rhapsody: | ||
"""A class implementing the Rhapsody algorithm for pathogenicity | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,12 @@ | |
|
||
__all__ = ['print_sat_mutagen_figure'] | ||
|
||
__author__ = "Luca Ponzoni" | ||
__date__ = "December 2019" | ||
__maintainer__ = "Luca Ponzoni" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
||
def _try_import_matplotlib(): | ||
try: | ||
|
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 |
---|---|---|
|
@@ -8,6 +8,12 @@ | |
|
||
__all__ = ['rhapsody'] | ||
|
||
__author__ = "Luca Ponzoni" | ||
__date__ = "December 2019" | ||
__maintainer__ = "Luca Ponzoni" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
||
def rhapsody(query, query_type='SAVs', | ||
main_classifier=None, aux_classifier=None, | ||
|