forked from stevencox/roger
-
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.
* bump dug version * adding bdc new pipelines * adding curesc * adding bagel config * add test parser * add score threshold * point to dug develop
- Loading branch information
Showing
4 changed files
with
83 additions
and
6 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,50 @@ | ||
"Dug pipeline for dbGaP data set" | ||
|
||
from roger.pipelines import DugPipeline | ||
|
||
class BIOLINCCdbGaPPipeline(DugPipeline): | ||
"Pipeline for the dbGaP data set" | ||
pipeline_name = 'biolincc' | ||
parser_name = 'biolincc' | ||
|
||
|
||
class covid19dbGaPPipeline(DugPipeline): | ||
"Pipeline for the dbGaP data set" | ||
pipeline_name = 'covid19-dbgap' | ||
parser_name = 'covid19' | ||
|
||
class dirDbGaPPipeline(DugPipeline): | ||
pipeline_name = "dir-dbgap" | ||
parser_name = "dir" | ||
|
||
class LungMapDbGaPPipeline(DugPipeline): | ||
pipeline_name = "lungmap-dbgap" | ||
parser_name = "lungmap" | ||
|
||
class nsrrDbGaPPipeline(DugPipeline): | ||
pipeline_name = "nsrr-dbgap" | ||
parser_name = "nsrr" | ||
|
||
class ParentDbGaPPipeline(DugPipeline): | ||
pipeline_name = "parent-dbgap" | ||
parser_name = "parent" | ||
|
||
class PCGCDbGaPPipeline(DugPipeline): | ||
pipeline_name = "pcgc-dbgap" | ||
parser_name = "pcgc" | ||
|
||
class RecoverDbGaPPipeline(DugPipeline): | ||
pipeline_name = "recover-dbgap" | ||
parser_name = "recover" | ||
|
||
class TopmedDBGaPPipeline(DugPipeline): | ||
pipeline_name = "topmed-gen3-dbgap" | ||
parser_name = "topmeddbgap" | ||
|
||
class CureSCPipeline(DugPipeline): | ||
pipeline_name = "curesc-dbgap" | ||
parser_name = "curesc" | ||
|
||
class SmallDataDbGap(DugPipeline): | ||
pipeline_name = "small-data-dbgap" | ||
parser_name = "topmeddbgap" |
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