Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Feb 9, 2023
1 parent 99dc18f commit 95068a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,12 @@ def __init__(self, workflow, config, config_lookup_paths, config_paths, workdir)
(NgsMappingWorkflow,),
)
# Register sub step classes so the sub steps are available
self.register_sub_step_classes((WritePedigreeStepPart, BuildGcnvTargetSeqModelStepPart,))
self.register_sub_step_classes(
(
WritePedigreeStepPart,
BuildGcnvTargetSeqModelStepPart,
)
)
# Register sub workflows
self.register_sub_workflow("ngs_mapping", self.config["path_ngs_mapping"])
# Build mapping from NGS DNA library to library kit
Expand Down
7 changes: 6 additions & 1 deletion snappy_pipeline/workflows/helper_gcnv_model_wgs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,12 @@ def __init__(self, workflow, config, config_lookup_paths, config_paths, workdir)
(NgsMappingWorkflow,),
)
# Register sub step classes so the sub steps are available
self.register_sub_step_classes((WritePedigreeStepPart,BuildGcnvWgsModelStepPart,))
self.register_sub_step_classes(
(
WritePedigreeStepPart,
BuildGcnvWgsModelStepPart,
)
)
# Register sub workflows
self.register_sub_workflow("ngs_mapping", self.config["path_ngs_mapping"])

Expand Down

0 comments on commit 95068a8

Please sign in to comment.