Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DRAGEN: new module ROH Metrics #1912

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions multiqc/modules/dragen/dragen.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .ploidy_estimation_metrics import DragenPloidyEstimationMetrics
from .rna_quant_metrics import DragenRnaQuantMetrics
from .rna_transcript_cov import DragenRnaTranscriptCoverage
from .roh_metrics import DragenROHMetrics
from .sc_atac_metrics import DragenScAtacMetrics
from .sc_rna_metrics import DragenScRnaMetrics
from .time_metrics import DragenTimeMetrics
Expand All @@ -20,6 +21,7 @@


class MultiqcModule(
DragenROHMetrics,
DragenMappingMetics,
DragenFragmentLength,
DragenPloidyEstimationMetrics,
Expand Down Expand Up @@ -73,6 +75,9 @@ def __init__(self):
samples_found |= self.add_ploidy_estimation_metrics()
# <output prefix>.ploidy_estimation_metrics.csv - add just Ploidy estimation into gen stats

samples_found |= self.add_roh_metrics()
# <output-file-prefix>.roh_metrics.csv

self.collect_overall_mean_cov_data()
# <output prefix>.<coverage region prefix>_overall_mean_cov<arbitrary suffix>.csv
# This data will be used by in the DragenCoverageMetrics.
Expand Down