-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…#302) * Preparing removal of cubi-conda wip wip wip wip update readme * wip * wip
- Loading branch information
Showing
44 changed files
with
1,169 additions
and
727 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
"""Commonly used code and types""" | ||
|
||
import typing | ||
|
||
#: Type for a Snaekmake key/path dict. | ||
SnakemakeDict = typing.Dict[str, typing.Union[typing.List[str], str]] | ||
|
||
#: Type for generating pairs with key/path(s) mapping for our workflows. | ||
SnakemakeDictItemsGenerator = typing.Generator[ | ||
typing.Tuple[str, typing.Union[typing.List[str], str]], | ||
None, | ||
None, | ||
] | ||
|
||
#: Type for generating path(s) mapping for our workflows. | ||
SnakemakeListItemsGenerator = typing.Generator[ | ||
str, | ||
None, | ||
None, | ||
] |
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,5 @@ | ||
"""Exceptions used in the SNAPPY pipeline""" | ||
|
||
|
||
class InvalidConfigurationException(Exception): | ||
"""Raised on invalid configuration""" |
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,5 @@ | ||
"""Warnings used in SNAPPY Pipeline""" | ||
|
||
|
||
class InconsistentPedigreeWarning(UserWarning): | ||
"""Raised on inconsistencies with pedigree.""" |
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
Oops, something went wrong.