-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #496 from pepkit/dev_492_refactor_pipestat
Issue 492 refactor pipestat
- Loading branch information
Showing
9 changed files
with
312 additions
and
255 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,7 @@ | ||
""" Shared project constants """ | ||
|
||
import os | ||
from enum import Enum | ||
|
||
__author__ = "Databio lab" | ||
__email__ = "[email protected]" | ||
|
@@ -268,3 +269,10 @@ def _get_apperance_dict(type, templ=APPEARANCE_BY_FLAG): | |
"init-piface": "Initialize generic pipeline interface.", | ||
"link": "Create directory of symlinks for reported results.", | ||
} | ||
|
||
# Add project/sample enum | ||
|
||
|
||
class PipelineLevel(Enum): | ||
SAMPLE = "sample" | ||
PROJECT = "project" |
Oops, something went wrong.