Generate Genomeqc samplesheet - #215
Merged
Merged
Conversation
|
Warning Newer version of the nf-core template is available. Your pipeline is using an old version of the nf-core template: 4.0.3. For more documentation on how to update your pipeline, please see the Synchronisation documentation. |
|
❌ nf-test failed with latest Nextflow versionNote Tests with Nextflow's latest version failed but it will not cause a CI workflow failure.
See the full run for details. |
erikrikarddaniel
approved these changes
Sep 1, 2026
erikrikarddaniel
left a comment
Member
There was a problem hiding this comment.
Tiny suggestion, otherwise great.
Co-authored-by: Daniel Lundin <erik.rikard.daniel@gmail.com>
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.
Given the recent release of nf-core/genomeqc, preparation of a samplesheet for downstream genomeqc was proposed (#214).
This PR adds an extra output, compatible with the (updated) downstream samplesheet in the form of
assembly,fasta.Trying to implement this has uncovered a bunch of inconsistencies, which are fixed here:
The placeholder channel that contains all final scaffolds (there is nothing downstream currently), was misformatted and contained a nested map. This has been fixed in
subworkflows/scaffold/main.nf. There was also a problem in one of the nested scaffolding workflows (ragtag) which did not emit the correct elementThe local
BGZIPprocess, which ensures that all assemblies are bgzipped for samtools compatibility emits a folder (out/file.gz), I had not realized that this will publish the same folder structure, and not simply the file. Fixed via fixes toconfig/filespublishDirdirectivesusage.mdwas updatedCHANGELOG.mdwas updatedTest snapshots were updated.