-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:ventolab/CellphoneDB
- Loading branch information
Showing
45 changed files
with
11,739 additions
and
11,148 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 |
---|---|---|
|
@@ -4,4 +4,5 @@ cellphonedb/out | |
__pycache__ | ||
out | ||
docs/api/_build | ||
cellphonedb/src/tests/test_data | ||
.DS_Store |
This file was deleted.
Oops, something went wrong.
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,5 +1,6 @@ | ||
class DatabaseCreationException(Exception): | ||
def __init__(self, description: str = None, hint: str = None): | ||
super(DatabaseCreationException, self).__init__("Failed to create CellphoneDB database due to failed data sanity tests") | ||
super(DatabaseCreationException, self).__init__( | ||
"Failed to create CellphoneDB database due to failed data sanity tests") | ||
self.description = description | ||
self.hint = hint |
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,3 +1,5 @@ | ||
class ProcessMetaException(Exception): | ||
def __init__(self): | ||
super(ProcessMetaException, self).__init__('Error processing Meta data') | ||
super(ProcessMetaException, self).__init__( | ||
'Error processing Meta data - please consult ' + | ||
'https://cellphonedb.readthedocs.io/en/latest/RESULTS-DOCUMENTATION.html#meta-file') |
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.