Add trim_galore test fixtures (for MultiQC#3538)#377
Open
FelixKrueger wants to merge 1 commit intoMultiQC:mainfrom
Open
Add trim_galore test fixtures (for MultiQC#3538)#377FelixKrueger wants to merge 1 commit intoMultiQC:mainfrom
FelixKrueger wants to merge 1 commit intoMultiQC:mainfrom
Conversation
Test fixtures for the new MultiQC `trim_galore` module proposed in MultiQC/MultiQC#3538. These are real Trim Galore v2.1.0-beta.5 outputs: - sample_R1.fastq.gz_trimming_report.json — single-end (10K Illumina, long adapter-length distribution including the 1-bp tail typical for --stringency 1 default) - BS-seq_10K_R{1,2}.fastq.gz_trimming_report.json — paired-end pair (BS-seq 10K, with `pair_validation` populated and short adapter-length tails — useful coverage for the PE code path) Schema reference: schema_version 1, documented in the upstream issue thread at MultiQC/MultiQC#3529.
FelixKrueger
added a commit
to FelixKrueger/MultiQC
that referenced
this pull request
Apr 27, 2026
The fixtures originally landed in `tests/data/modules/trim_galore/` of the main repo, but `test_modules_run.py` resolves test data via `<repo>/test-data/data/modules/<module>/` (a separate sibling repo, MultiQC/test-data). Moving them there in MultiQC/test-data#377.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Companion PR to MultiQC/MultiQC#3538, which adds a native MultiQC module for Trim Galore v2.x (closes MultiQC/MultiQC#3529).
This PR drops the test fixtures the new module needs into
data/modules/trim_galore/. Real Trim Galore v2.1.0-beta.5 JSON outputs:sample_R1.fastq.gz_trimming_report.json— single-end (10K Illumina, long adapter-length distribution including the 1-bp tail typical for the default--stringency 1)BS-seq_10K_R{1,2}.fastq.gz_trimming_report.json— paired-end pair (BS-seq 10K, withpair_validationpopulated and short adapter-length tails — covers the PE code path)Schema reference:
schema_version: 1, documented in the upstream MultiQC issue thread.The MultiQC PR's
test_modules_run.py::test_all_modules[trim_galore-…]andtest_ignore_samples[trim_galore-…]checks fail until this PR merges (they look fortest-data/data/modules/trim_galore/). Happy to coordinate merge order — most natural is to merge this first, then unblock the MultiQC PR's CI.