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 vc_hethom_ratio_metrics #1915

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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 @@ -14,12 +14,14 @@
from .sc_rna_metrics import DragenScRnaMetrics
from .time_metrics import DragenTimeMetrics
from .trimmer_metrics import DragenTrimmerMetrics
from .vc_hethom_ratio_metrics import DragenVCHetHomRatioMetrics
from .vc_metrics import DragenVCMetrics

log = logging.getLogger(__name__)


class MultiqcModule(
DragenVCHetHomRatioMetrics,
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_vc_hethom_ratio_metrics()
# <output prefix>.vc_hethom_ratio_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
Loading
Loading