feat: Implement Wave CLI as Nextflow first-class command#98
Draft
edmundmiller wants to merge 3 commits intoseqeralabs:masterfrom
Draft
feat: Implement Wave CLI as Nextflow first-class command#98edmundmiller wants to merge 3 commits intoseqeralabs:masterfrom
edmundmiller wants to merge 3 commits intoseqeralabs:masterfrom
Conversation
Transform standalone Wave CLI into wave-cli Nextflow plugin architecture. Implement PluginAbstractExec interface, migrate to modern plugin structure, and preserve all existing CLI functionality. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add WaveCommand extending CmdBase for full CLI integration - Add WaveCommandExtensionPoint to register 'wave' as first-class command - Integrate with existing Wave CLI application seamlessly - Support all Wave CLI features including help, options, and examples Users can now execute 'nextflow wave' directly instead of verbose 'nextflow plugin nf-wave:command' syntax. The command appears in main Nextflow help output with description and full functionality. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Update build.gradle with nextflow-plugin gradle plugin and dependencies - Configure settings.gradle for plugin development workflow - Update Makefile for streamlined build and installation process - Configure WavePlugin main class for proper extension registration - Update extensions.idx to register WaveCommandExtensionPoint Enables independent development and distribution of Wave CLI as a standalone Nextflow plugin while maintaining full integration with the main Nextflow CLI system. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.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.
Summary
This PR enables Wave CLI to work as a first-class Nextflow command:
nextflow waveinstead ofnextflow plugin nf-wave:command.Changes
WaveCommand.groovy- integrates with Nextflow CLI systemWaveCommandExtensionPoint.groovy- registers the wave commandUsage
The wave command now appears in main Nextflow help output alongside built-in commands.
Related PRs