From nextflow
Launches Nextflow pipeline executions on cloud and HPC clusters via Seqera Platform. Use to configure compute environments, push pipeline changes to GitHub, and submit runs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nextflow:launch-workflowThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Launch Nextflow pipeline executions on cloud (AWS, Google Cloud, Azure) and HPC clusters (Slurm, LSF, etc.) through Seqera Platform. Seqera Platform manages the target compute environment, executes the pipeline from a remote Git repository, and provides monitoring.
Launch Nextflow pipeline executions on cloud (AWS, Google Cloud, Azure) and HPC clusters (Slurm, LSF, etc.) through Seqera Platform. Seqera Platform manages the target compute environment, executes the pipeline from a remote Git repository, and provides monitoring.
Requires Nextflow 26.04 or later (for the nextflow auth and nextflow launch commands).
nextflow launch — submit the pipeline by passing the Git repository URL and the expected parameters.Check whether the user is already authenticated:
nextflow auth status
If not authenticated, sign in:
nextflow auth login
This opens a browser for authentication. Wait for the user to complete the login flow before proceeding.
List available compute environments using the Seqera API:
call_seqera_api(
service: "platform",
api_name: "platform_list_compute_envs",
parameters: {}
)
Selecting the compute environment:
Seqera Platform launches pipelines from a remote Git URL — it cannot launch directly from a local path. Verify the pipeline directory is a Git repository connected to a remote on GitHub (or a compatible host like GitLab or Bitbucket).
Check the current state:
git remote -v
git status
If the pipeline is not yet a Git repository or has no remote, assist the user in setting it up:
git init
git add .
git commit -m "Initial pipeline commit"
gh repo create) or ask for an existing remote URL.git remote add origin <repo-url>
git push -u origin main
Before launching, push any local changes so the remote reflects the code that should run:
git status
git add <files>
git commit -m "<message>"
git push
If the working tree is clean and the local branch is in sync with the remote, skip this step.
Use nextflow launch with the Git repository URL and parameters:
nextflow launch <git-repo-url> \
-r <revision> \
--input <input> \
--outdir <outdir> \
[additional --params...]
Launch a pipeline from GitHub:
nextflow launch https://github.com/org/pipeline \
-r main \
--input samplesheet.csv \
--outdir s3://bucket/results
Launch an nf-core pipeline:
nextflow launch https://github.com/nf-core/rnaseq \
-r 3.14.0 \
--input samplesheet.csv \
--outdir s3://bucket/results \
--genome GRCh38
| Option | Description |
|---|---|
-r <revision> | Pipeline version, branch, or tag |
--input | Input samplesheet or data |
--outdir | Output directory (cloud storage when running on cloud CEs) |
-params-file params.yml | Parameters file |
-resume | Resume a previous execution |
nextflow launch returns a run URL on Seqera Platform. Present this URL to the user so they can monitor progress in the Platform UI.
nextflow auth status before attempting to launch.nextflow launch, not a local path.-r to target a specific branch, tag, or commit for reproducibility.--outdir when the target CE runs on a cloud platform (s3://, gs://, az://).nextflow launch so the user can monitor the run.npx claudepluginhub nextflow-io/agent-skills --plugin nextflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.