How to use the multiqc.config.read_count_multiplier function in multiqc

To help you get started, we’ve selected a few multiqc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ewels / MultiQC / multiqc / modules / tophat / tophat.py View on Github external
            'modify': lambda x: x * config.read_count_multiplier,
            'shared_key': 'read_count'
github ewels / MultiQC / multiqc / modules / slamdunk / slamdunk.py View on Github external
            'modify': lambda x: float(x) * config.read_count_multiplier,
        }
github ewels / MultiQC / multiqc / modules / qualimap / QM_RNASeq.py View on Github external
        'modify': lambda x: x * config.read_count_multiplier
    }
github ewels / MultiQC / multiqc / modules / mtnucratio / mtnucratio.py View on Github external
            'modify': lambda x: x * config.read_count_multiplier,
            'shared_key': 'read_count',
github ewels / MultiQC / multiqc / modules / sargasso / sargasso.py View on Github external
            'modify': lambda x: float(x) * config.read_count_multiplier,
            'shared_key': 'read_count'
github ewels / MultiQC / multiqc / modules / featureCounts / feature_counts.py View on Github external
            'modify': lambda x: float(x) * config.read_count_multiplier,
            'shared_key': 'read_count'
github ewels / MultiQC / multiqc / modules / samtools / flagstat.py View on Github external
                'modify': lambda x: x * config.read_count_multiplier,
                'shared_key': 'read_count',
github ewels / MultiQC / multiqc / modules / kallisto / kallisto.py View on Github external
            'modify': lambda x: x * config.read_count_multiplier,
            'shared_key': 'read_count'
github ewels / MultiQC / multiqc / modules / verifybamid / verifybamid.py View on Github external
			'modify': lambda x: x * config.read_count_multiplier if x != "NA" else x,
			'shared_key': 'read_count',
github ewels / MultiQC / multiqc / modules / hicup / hicup.py View on Github external
            'modify': lambda x: x * config.read_count_multiplier,
            'shared_key': 'read_count'