Skip to content

Commit

Permalink
Deleted a function by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
sofstam committed Feb 19, 2024
1 parent 74ff5e6 commit 870ab2f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cg/meta/workflow/nf_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,16 @@ def get_deliverables_for_case(self, case_id: str) -> PipelineDeliverables:

return PipelineDeliverables(files=files)

def get_multiqc_json_path(self, case_id: str) -> Path:
"""Return the path of the multiqc_data.json file."""
return Path(
self.root_dir,
case_id,
MultiQC.MULTIQC,
MultiQC.MULTIQC_DATA,
MultiQC.MULTIQC_DATA + FileExtensions.JSON,
)

def get_workflow_metrics(self) -> dict:
"""Get nf-core workflow metrics constants."""
return {}
Expand Down

0 comments on commit 870ab2f

Please sign in to comment.