Reports
Most Nextflow pipelines will generate reports or output files which are useful to inspect at the end of the pipeline execution. Reports may be in various formats (e.g. HTML, PDF, TXT) and would typically contain quality control (QC) metrics that would be important to assess the integrity of the results.
Reports allow you to directly visualise supported file types or to download them via the user interface (see Limitations). This saves users the time and effort of having to retrieve and visualize output files from their local storage.
Visualize reports
Available reports are listed in a Reports tab on the Runs page. You can select a report from the table to view or download it (see Limitations for supported file types and sizes).
To open a report preview, the file must be smaller than 10 MB.
You can download a report directly or from the provided file path. Reports larger than 25MB cannot be downloaded directly — the option to download from file path is given instead.
Configure reports
Create a config file that defines the paths to a selection of output files published by the pipeline for Seqera to render reports. There are 2 ways to provide the config file, both of which have to be in YAML format:
- Pipeline repository: If a file called
tower.yml
exists in the root of the pipeline repository then this will be fetched automatically before the pipeline execution. - Seqera Platform interface: Provide the YAML definition within the Advanced options > Seqera Cloud config file box when:
- Creating a pipeline in the Launchpad.
- Amending the launch settings during pipeline launch. This is available to users with the Maintain role only.
Any configuration provided in the interface will override configuration supplied in the pipeline repository.
Configure reports for Nextflow CLI runs
The reports and log files for pipeline runs launched with Nextflow CLI (nextflow run <pipeline> -with-tower
) can be accessed directly in the Seqera UI. The files generated by the run must be accessible to your Seqera workspace primary compute environment. Specify your workspace prior to launch by setting the TOWER_WORKSPACE_ID
environment variable. Reports are listed under the Reports tab on the run details page.
Execution logs are available in the Logs tab by default, provided the output files are accessible to your workspace primary compute environment. To specify additional report files to be made available, your pipeline repository root folder must include a tower.yml
file that specifies the files to be included (see below).
Reports implementation
Pipeline reports need to be specified using YAML syntax:
reports:
<path pattern>:
display: text to display (required)
mimeType: file mime type (optional)