Add Proxiome V2 workflow#204
Merged
Merged
Conversation
johandahlberg
approved these changes
May 18, 2026
Collaborator
johandahlberg
left a comment
There was a problem hiding this comment.
Great work. I have looked over the code and run the test suite and everything looks good as far as I can tell.
| path(analysis_data , stageAs: "results/analysis/*"), | ||
| path(layout_data , stageAs: "results/layout/*") | ||
| ) | ||
| tuple val(meta), val(result_stages), path(results_data, arity: "1..*", stageAs: "results_raw/?/*") |
Collaborator
There was a problem hiding this comment.
This is a really nice change. Make this much easier to work with.
Comment on lines
+66
to
78
| if (params.technology == "proxiome-v1" || params.technology == "nonhashed_samples") { | ||
| PIXELATOR_PNA_V1( | ||
| ch_reads, | ||
| ch_panel_files | ||
| ) | ||
| } else if (params.technology == "proxiome-v2" || params.technology == "hashed_samples") { | ||
| PIXELATOR_PNA_V2( | ||
| ch_reads, | ||
| ch_panel_files | ||
| ) | ||
| } else { | ||
| error "Unknown technology: \"${params.technology}\"" | ||
| } |
Collaborator
There was a problem hiding this comment.
Nice. I think this is clear.
This was referenced May 18, 2026
Merged
Open
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.
This PR introduces the Proxiome V2 workflow to process pooled samples.
It also significantly reworks the tests:
PR checklist
nf-core pipelines lint).nextflow run . -profile test,docker --outdir <OUTDIR>).nextflow run . -profile debug,test,docker --outdir <OUTDIR>).Usage Documentation inWill be updated in a dedicated PRdocs/usage.mdis updated.Output Documentation inWill be updated in a dedicated PRdocs/output.mdis updated.CHANGELOG.mdis updated.Will be updated in a dedicated PRREADME.mdis updated (including new tool citations and authors/contributors).