Part 2: Launch pipelines from the command line¶
In Part 1, you launched nf-core/rnaseq from the Seqera web interface.
Now we do the same from the command line using the tw CLI, and add a new pipeline to your workspace.
1. Launch pipelines from the command line¶
In the run view, click the Command line tab.
You will see the exact nextflow run command that Platform constructed and submitted on your behalf — the same kind of command you have been running manually in the Use nf-core course.
Platform does not replace Nextflow; it orchestrates it.
Everything you can do through the web interface, you can also do from a terminal using the tw CLI, the command-line tool for interacting with the Platform API.
This is useful for automating launches from scripts or CI/CD pipelines.
We're going to do this now from the same codespace you used for the earlier courses.
1.1. Install the tw CLI¶
Run the following commands in your Codespace terminal to download and install the tw binary:
curl -fsSL https://github.com/seqeralabs/tower-cli/releases/latest/download/tw-linux-x86_64 -o tw
chmod +x tw
sudo mv tw /usr/local/bin/
Verify the installation:
The tw CLI is installed and ready to configure.
1.2. Get an access token¶
The tw CLI authenticates with Seqera using a personal access token.
- In the Seqera web interface, click your avatar in the top-right corner and select Your tokens.
- Click Add token, give it a name (e.g.
training), and click Add. - Copy the token value — it will only be shown once. If you don't save it somewhere right away, you will need to generate another one.
1.3. Configure the CLI¶
For convenience, we're going to set up a configuration file containing the access token you just generated and the workspace identifier.
Open the .seqera_config file in this directory in the editor and set the two variables:
TOWER_ACCESS_TOKEN: the token you generated in section 1.2TOWER_WORKSPACE_ID: the numeric ID of your workspace (theIDcolumn intw workspaces list, which you run in section 1.4)
Once the values are filled in, load the config:
Verify the connection:
Command output
Details
-------------------------+-----------------------------
Tower API endpoint | https://api.cloud.seqera.io
Tower API version | 1.150.0
Tower version | 26.1.0-cycle54
CLI version | 0.30.0 (fde9dec)
CLI minimum API version | 1.148.0
Authenticated user | <your-name>
System health status
---------------------------------------+----
Remote API server connection check | OK
Tower API version check | OK
Authentication API credential's token | OK
The tw CLI is now authenticated and connected to your Seqera account.
Run source .seqera_config at the start of each Codespace session to reload the config.
Tip
If your workspace does not have a primary compute environment set, you can add export TOWER_COMPUTE_ENV=<compute-env-name> to your config file to set a default.
Any config value can be overridden on the command line by passing the flag explicitly (e.g. --compute-env other-env).
See the tw CLI reference for the full list of options and environment variables.
1.4. Explore your workspace from the CLI¶
List the workspaces you have access to:
Command output
View the runs in your workspace, including the nf-core/rnaseq run you just launched:
Command output
The same run you are monitoring in the web interface is visible here.
Note
Because TOWER_WORKSPACE_ID is set in .seqera_config, you can omit --workspace from all tw commands.
Without the config, you would pass it explicitly:
Everything visible in the web interface is accessible from the CLI.
1.5. Launch nf-core/rnaseq from the CLI¶
The pipeline you added to your workspace in Part 1 is available by name in the CLI.
Launch it with the test profile:
Command output
Open the link in your browser and confirm the run appears in the Runs panel.
Once you can see it running, you have confirmed that the CLI and the web interface are two views onto the same workspace.
Note
You can also pass a full GitHub URL directly to tw launch without adding the pipeline to a workspace first.
However, adding the pipeline explicitly before launching it is generally better: it saves the pipeline configuration for future runs, makes it available by name, and makes it visible to all workspace members in the Launchpad.
It is possible to add a pipeline to a workspace directly from the command line using tw.
The next section shows how to do this with the nf-core/demo pipeline.
Takeaway¶
You know how to authenticate the tw CLI, inspect your workspace, and launch a saved pipeline from the terminal.
What's next?¶
Add a new pipeline to your workspace from the command line and launch it.
2. Add a new pipeline and run it¶
Any Nextflow pipeline on GitHub can be added to your workspace with tw pipelines add, as long as it has a main.nf entry point and a nextflow.config at its root.
nf-core/demo is a good example to practice with: you already ran it in the Use nf-core course, so you know what it does and what to expect.
2.1. Add nf-core/demo to your workspace¶
Run the following command to register the pipeline in your workspace:
The pipeline is now registered and will appear in the Launchpad.
2.2. Verify it appears in the Launchpad¶
List the pipelines in your workspace to confirm it was added:
Command output
Open your workspace in the browser and click Launchpad to confirm nf-core/demo now appears alongside nf-core/rnaseq.
Tip
You can also add pipelines via the web interface: in the left sidebar, click Launchpad, then Add pipeline, and fill out the form accordingly.
Click the Launch button on the nf-core/demo entry to open its launch form.
You will see that the input and outdir parameters are highlighted in red — they are required fields with no default values, because tw pipelines add registers only the pipeline source without pre-configuring any parameters.
The next two sections walk through how to provide those values: first through the web form, then from the command line.
2.3. Launch nf-core/demo from the web interface¶
With the launch form open, fill in the two required parameters.
For input, enter the test samplesheet URL from the nf-core/demo test profile.
You can find it in conf/test.config inside the pipeline repository, which you examined in the Use nf-core course:
https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv
For outdir, enter a cloud storage path where the pipeline can write its results.
Use the bucket configured for your workspace, with a subdirectory to keep runs organized:
Once both fields are filled, click the blue Launch button.
The run appears in the Runs panel and should complete in a few minutes on the test dataset. Click into the run to explore the task table and any execution reports.
2.4. Launch nf-core/demo from the CLI¶
Unlike nextflow run, the tw launch command does not accept individual parameter flags like --input or --outdir.
Parameters must be provided through a file in YAML or JSON format, passed with --params-file.
This encourages reproducibility: a saved parameter file documents exactly what values were used for a run, making it easy to repeat or share a run configuration.
Create a parameters file in your working directory:
Open it in the editor and add the output path:
Now you can launch the pipeline using the test profile (which provides the input samplesheet) and the params file (which provides outdir):
Command output
Open the link to confirm the run appears in the Runs panel.
Tip
You can include the parameter file during the initial setup step if you would like to set some defaults, as well as some additional properties to match what we did earlier through the web form:
Takeaway¶
You know how to add any GitHub-hosted Nextflow pipeline to your workspace and launch it, both from the web interface by filling in parameters manually, and from the tw CLI by combining a profile with a parameter file.
Summary¶
In this part you learned to:
- Authenticate the
twCLI and launch a saved pipeline from the terminal - Add a new pipeline from GitHub using the CLI and verify it appears in the Launchpad
- Launch a pipeline from the Seqera web interface by filling in required parameters manually
- Launch a pipeline from the CLI using a Nextflow profile and a parameter file