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

Update fastqc to produce multi-version versions.yml #665

Merged
merged 19 commits into from
Sep 24, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Fix output channel
grst committed Sep 24, 2021

Verified

This commit was signed with the committer’s verified signature.
boneskull Christopher Hiller
commit fb3d3d555e819bc38dc6f3fe470423fb0c03eb22
2 changes: 1 addition & 1 deletion modules/multiqc/main.nf
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ process MULTIQC {
path "*multiqc_report.html", emit: report
path "*_data" , emit: data
path "*_plots" , optional:true, emit: plots
path "*.version.txt" , emit: version
path "versions.yml" , emit: version

script:
def software = getSoftwareName(task.process)
2 changes: 1 addition & 1 deletion tests/test_versions_yml.py
Original file line number Diff line number Diff line change
@@ -36,5 +36,5 @@ def test_ensure_valid_version_yml(workflow_dir):
assert len(software_versions), "There must be at least one version emitted."
for tool, version in software_versions.items():
assert re.match(
r"^\d+.*", version
r"^\d+.*", str(version)
), f"Version number for {tool} must start with a number. "