-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.2.1' into master
- Loading branch information
Showing
8 changed files
with
56 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
__title__ = 'iAnnotateSV' | ||
__version__ = '1.2.0' | ||
__version__ = '1.2.1' | ||
__author__ = 'Ronak H Shah' | ||
__license__ = 'Apache Software License' | ||
__copyright__ = 'Copyright 2019 Ronak Hasmukh Shah' | ||
__copyright__ = 'Copyright 2020 Ronak Hasmukh Shah' |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class Error(Exception): | ||
'''Base class for other exceptions''' | ||
pass | ||
|
||
class ChrError(Error): | ||
'''Raise when the breakpoint is not in autosome or allosome, where annotation is not possible''' | ||
def __init__(self, bkp): | ||
Exception.__init__( | ||
self, "Breakpoint " + str(bkp) + " is in neither autosome nor allosome, and cannot be annotated." | ||
) | ||
|
||
class IntergenicError(Error): | ||
'''Raise when a breakpoint in intergenic region cannot be resolved''' | ||
def __init__(self, bkp): | ||
Exception.__init__( | ||
self, "Intergenic breakpoint " + str(bkp) + " cannot be resolved." | ||
) |
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