From 114f6b0f80338f17b4fb94b8fff90a2d7ef9db89 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Tue, 14 Dec 2021 16:42:58 +0000 Subject: [PATCH 01/21] Template update for nf-core/tools version 2.2 --- .gitattributes | 2 + .github/CONTRIBUTING.md | 38 ++------ .github/ISSUE_TEMPLATE/bug_report.md | 63 ------------- .github/ISSUE_TEMPLATE/bug_report.yml | 52 ++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 - .github/ISSUE_TEMPLATE/feature_request.md | 32 ------- .github/ISSUE_TEMPLATE/feature_request.yml | 11 +++ .github/workflows/awsfulltest.yml | 8 +- .github/workflows/awstest.yml | 10 +- .github/workflows/ci.yml | 23 +++-- .github/workflows/linting_comment.yml | 1 + CHANGELOG.md | 2 +- CITATIONS.md | 2 +- README.md | 15 +-- assets/email_template.html | 2 +- assets/multiqc_config.yaml | 2 +- assets/nf-core-bacass_logo.png | Bin 18186 -> 0 bytes assets/nf-core-bacass_logo_light.png | Bin 0 -> 11313 bytes assets/sendmail_template.txt | 4 +- bin/scrape_software_versions.py | 36 ------- conf/base.config | 3 + conf/modules.config | 55 ++++++----- conf/test.config | 4 +- docs/images/nf-core-bacass_logo.png | Bin 34789 -> 0 bytes docs/images/nf-core-bacass_logo_dark.png | Bin 0 -> 71210 bytes docs/images/nf-core-bacass_logo_light.png | Bin 0 -> 71089 bytes docs/output.md | 2 +- docs/usage.md | 36 ------- lib/NfcoreSchema.groovy | 26 +++-- lib/NfcoreTemplate.groovy | 30 ++---- lib/Utils.groovy | 7 -- lib/WorkflowMain.groovy | 6 +- modules.json | 9 +- modules/local/functions.nf | 68 ------------- modules/local/get_software_versions.nf | 33 ------- modules/local/samplesheet_check.nf | 24 ++--- .../custom/dumpsoftwareversions/main.nf | 21 +++++ .../custom/dumpsoftwareversions/meta.yml | 34 +++++++ .../templates/dumpsoftwareversions.py | 89 ++++++++++++++++++ modules/nf-core/modules/fastqc/functions.nf | 68 ------------- modules/nf-core/modules/fastqc/main.nf | 39 ++++---- modules/nf-core/modules/fastqc/meta.yml | 7 +- modules/nf-core/modules/multiqc/functions.nf | 68 ------------- modules/nf-core/modules/multiqc/main.nf | 31 +++--- modules/nf-core/modules/multiqc/meta.yml | 7 +- nextflow.config | 35 +++---- nextflow_schema.json | 31 +----- subworkflows/local/input_check.nf | 8 +- workflows/bacass.nf | 44 +++------ 49 files changed, 414 insertions(+), 675 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml delete mode 100644 assets/nf-core-bacass_logo.png create mode 100644 assets/nf-core-bacass_logo_light.png delete mode 100755 bin/scrape_software_versions.py delete mode 100644 docs/images/nf-core-bacass_logo.png create mode 100644 docs/images/nf-core-bacass_logo_dark.png create mode 100644 docs/images/nf-core-bacass_logo_light.png delete mode 100644 modules/local/functions.nf delete mode 100644 modules/local/get_software_versions.nf create mode 100644 modules/nf-core/modules/custom/dumpsoftwareversions/main.nf create mode 100644 modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml create mode 100644 modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py delete mode 100644 modules/nf-core/modules/fastqc/functions.nf delete mode 100644 modules/nf-core/modules/multiqc/functions.nf diff --git a/.gitattributes b/.gitattributes index 7fe55006..050bb120 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ *.config linguist-language=nextflow +modules/nf-core/** linguist-generated +subworkflows/nf-core/** linguist-generated diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 42b647d0..3a3bca46 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -68,16 +68,13 @@ If you wish to contribute a new step, please use the following coding standards: 1. Define the corresponding input channel into your new process from the expected previous process channel 2. Write the process block (see below). 3. Define the output channel if needed (see below). -4. Add any new flags/options to `nextflow.config` with a default (see below). -5. Add any new flags/options to `nextflow_schema.json` with help text (with `nf-core schema build`). -6. Add any new flags/options to the help message (for integer/text parameters, print to help the corresponding `nextflow.config` parameter). -7. Add sanity checks for all relevant parameters. -8. Add any new software to the `scrape_software_versions.py` script in `bin/` and the version command to the `scrape_software_versions` process in `main.nf`. -9. Do local tests that the new code works properly and as expected. -10. Add a new test command in `.github/workflow/ci.yml`. -11. If applicable add a [MultiQC](https://https://multiqc.info/) module. -12. Update MultiQC config `assets/multiqc_config.yaml` so relevant suffixes, name clean up, General Statistics Table column order, and module figures are in the right order. -13. Optional: Add any descriptions of MultiQC report sections and output files to `docs/output.md`. +4. Add any new parameters to `nextflow.config` with a default (see below). +5. Add any new parameters to `nextflow_schema.json` with help text (via the `nf-core schema build` tool). +6. Add sanity checks and validation for all relevant parameters. +7. Perform local tests to validate that the new code works as expected. +8. If applicable, add a new test command in `.github/workflow/ci.yml`. +9. Update MultiQC config `assets/multiqc_config.yaml` so relevant suffixes, file name clean up and module plots are in the appropriate order. If applicable, add a [MultiQC](https://https://multiqc.info/) module. +10. Add a description of the output files and if relevant any appropriate images from the MultiQC report to `docs/output.md`. ### Default values @@ -102,27 +99,6 @@ Please use the following naming schemes, to make it easy to understand what is g If you are using a new feature from core Nextflow, you may bump the minimum required version of nextflow in the pipeline with: `nf-core bump-version --nextflow . [min-nf-version]` -### Software version reporting - -If you add a new tool to the pipeline, please ensure you add the information of the tool to the `get_software_version` process. - -Add to the script block of the process, something like the following: - -```bash - --version &> v_.txt 2>&1 || true -``` - -or - -```bash - --help | head -n 1 &> v_.txt 2>&1 || true -``` - -You then need to edit the script `bin/scrape_software_versions.py` to: - -1. Add a Python regex for your tool's `--version` output (as in stored in the `v_.txt` file), to ensure the version is reported as a `v` and the version number e.g. `v2.1.1` -2. Add a HTML entry to the `OrderedDict` for formatting in MultiQC. - ### Images and figures For overview images and other documents we follow the nf-core [style guidelines and examples](https://nf-co.re/developers/design_guidelines). diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 8e0a6155..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -name: Bug report -about: Report something that is broken or incorrect -labels: bug ---- - - - -## Check Documentation - -I have checked the following places for your error: - -- [ ] [nf-core website: troubleshooting](https://nf-co.re/usage/troubleshooting) -- [ ] [nf-core/bacass pipeline documentation](https://nf-co.re/bacass/usage) - -## Description of the bug - - - -## Steps to reproduce - -Steps to reproduce the behaviour: - -1. Command line: -2. See error: - -## Expected behaviour - - - -## Log files - -Have you provided the following extra information/files: - -- [ ] The command used to run the pipeline -- [ ] The `.nextflow.log` file - -## System - -- Hardware: -- Executor: -- OS: -- Version - -## Nextflow Installation - -- Version: - -## Container engine - -- Engine: -- version: - -## Additional context - - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..083ca89e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,52 @@ + +name: Bug report +description: Report something that is broken or incorrect +labels: bug +body: + + - type: markdown + attributes: + value: | + Before you post this issue, please check the documentation: + + - [nf-core website: troubleshooting](https://nf-co.re/usage/troubleshooting) + - [nf-core/bacass pipeline documentation](https://nf-co.re/bacass/usage) + + - type: textarea + id: description + attributes: + label: Description of the bug + description: A clear and concise description of what the bug is. + validations: + required: true + + - type: textarea + id: command_used + attributes: + label: Command used and terminal output + description: Steps to reproduce the behaviour. Please paste the command you used to launch the pipeline and the output from your terminal. + render: console + placeholder: | + $ nextflow run ... + + Some output where something broke + + - type: textarea + id: files + attributes: + label: Relevant files + description: | + Please drag and drop the relevant files here. Create a `.zip` archive if the extension is not allowed. + Your verbose log file `.nextflow.log` is often useful _(this is a hidden file in the directory where you launched the pipeline)_ as well as custom Nextflow configuration files. + + - type: textarea + id: system + attributes: + label: System information + description: | + * Nextflow version _(eg. 21.10.3)_ + * Hardware _(eg. HPC, Desktop, Cloud)_ + * Executor _(eg. slurm, local, awsbatch)_ + * Container engine: _(e.g. Docker, Singularity, Conda, Podman, Shifter or Charliecloud)_ + * OS _(eg. CentOS Linux, macOS, Linux Mint)_ + * Version of nf-core/bacass _(eg. 1.1, 1.5, 1.8.2)_ diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index eab75cde..02fa8097 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,3 @@ -blank_issues_enabled: false contact_links: - name: Join nf-core url: https://nf-co.re/join diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 29121dbd..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for the nf-core/bacass pipeline -labels: enhancement ---- - - - -## Is your feature request related to a problem? Please describe - - - - - -## Describe the solution you'd like - - - -## Describe alternatives you've considered - - - -## Additional context - - diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..86e8463b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,11 @@ +name: Feature request +description: Suggest an idea for the nf-core/bacass pipeline +labels: enhancement +body: + - type: textarea + id: description + attributes: + label: Description of feature + description: Please describe your suggestion for a new feature. It might help to describe a problem or use case, plus any alternatives that you have considered. + validations: + required: true diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index dac0a97d..0b9d2504 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -14,14 +14,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Launch workflow via tower - uses: nf-core/tower-action@master + uses: nf-core/tower-action@v2 # TODO nf-core: You can customise AWS full pipeline tests as required # Add full size test data (but still relatively small datasets for few samples) # on the `test_full.config` test runs with only one set of parameters with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} - bearer_token: ${{ secrets.TOWER_BEARER_TOKEN }} + access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} pipeline: ${{ github.repository }} revision: ${{ github.sha }} @@ -30,5 +30,5 @@ jobs: { "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-${{ github.sha }}" } - profiles: '[ "test_full", "aws_tower" ]' - + profiles: test_full,aws_tower + pre_run_script: 'export NXF_VER=21.10.3' diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index 56b6ad8a..783627f6 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -11,18 +11,18 @@ jobs: runs-on: ubuntu-latest steps: - name: Launch workflow via tower - uses: nf-core/tower-action@master + uses: nf-core/tower-action@v2 with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} - bearer_token: ${{ secrets.TOWER_BEARER_TOKEN }} + access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} pipeline: ${{ github.repository }} revision: ${{ github.sha }} workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/bacass/work-${{ github.sha }} parameters: | { - "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-${{ github.sha }}" + "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-test-${{ github.sha }}" } - profiles: '[ "test", "aws_tower" ]' - + profiles: test,aws_tower + pre_run_script: 'export NXF_VER=21.10.3' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef7bf59f..92ffd991 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,8 +8,9 @@ on: release: types: [published] -# Uncomment if we need an edge release of Nextflow again -# env: NXF_EDGE: 1 +env: + NXF_ANSI_LOG: false + CAPSULE_LOG: none jobs: test: @@ -17,20 +18,26 @@ jobs: # Only run on push if this is the nf-core dev branch (merged PRs) if: ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/bacass') }} runs-on: ubuntu-latest - env: - NXF_VER: ${{ matrix.nxf_ver }} - NXF_ANSI_LOG: false strategy: matrix: - # Nextflow versions: check pipeline minimum and current latest - nxf_ver: ['21.04.0', ''] + # Nextflow versions + include: + # Test pipeline minimum Nextflow version + - NXF_VER: '21.10.3' + NXF_EDGE: '' + # Test latest edge release of Nextflow + - NXF_VER: '' + NXF_EDGE: '1' steps: - name: Check out pipeline code uses: actions/checkout@v2 - name: Install Nextflow env: - CAPSULE_LOG: none + NXF_VER: ${{ matrix.NXF_VER }} + # Uncomment only if the edge release is more recent than the latest stable release + # See https://github.com/nextflow-io/nextflow/issues/2467 + # NXF_EDGE: ${{ matrix.NXF_EDGE }} run: | wget -qO- get.nextflow.io | bash sudo mv nextflow /usr/local/bin/ diff --git a/.github/workflows/linting_comment.yml b/.github/workflows/linting_comment.yml index 90f03c6f..44d72994 100644 --- a/.github/workflows/linting_comment.yml +++ b/.github/workflows/linting_comment.yml @@ -15,6 +15,7 @@ jobs: uses: dawidd6/action-download-artifact@v2 with: workflow: linting.yml + workflow_conclusion: completed - name: Get PR number id: pr_number diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a649d99..3afacd9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v1.1.1 - [date] +## v2.1.0dev - [date] Initial release of nf-core/bacass, created with the [nf-core](https://nf-co.re/) template. diff --git a/CITATIONS.md b/CITATIONS.md index 6f36eb1e..48d05a82 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -12,7 +12,7 @@ * [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) -* [MultiQC](https://www.ncbi.nlm.nih.gov/pubmed/27312411/) +* [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/) > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924. ## Software packaging/containerisation tools diff --git a/README.md b/README.md index cbdd61c0..a64019d0 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# ![nf-core/bacass](docs/images/nf-core-bacass_logo.png) +# ![nf-core/bacass](docs/images/nf-core-bacass_logo_light.png#gh-light-mode-only) ![nf-core/bacass](docs/images/nf-core-bacass_logo_dark.png#gh-dark-mode-only) [![GitHub Actions CI Status](https://github.com/nf-core/bacass/workflows/nf-core%20CI/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+CI%22) [![GitHub Actions Linting Status](https://github.com/nf-core/bacass/workflows/nf-core%20linting/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+linting%22) [![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?labelColor=000000&logo=Amazon%20AWS)](https://nf-co.re/bacass/results) [![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8?labelColor=000000)](https://doi.org/10.5281/zenodo.XXXXXXX) -[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.04.0-23aa62.svg?labelColor=000000)](https://www.nextflow.io/) +[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.10.3-23aa62.svg?labelColor=000000)](https://www.nextflow.io/) [![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?labelColor=000000&logo=anaconda)](https://docs.conda.io/en/latest/) [![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?labelColor=000000&logo=docker)](https://www.docker.com/) [![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) @@ -17,7 +17,7 @@ ## Introduction -**nf-core/bacass** is a bioinformatics best-practice analysis pipeline for Simple bacterial assembly and annotation pipeline.. +**nf-core/bacass** is a bioinformatics best-practice analysis pipeline for Simple bacterial assembly and annotation. The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It uses Docker/Singularity containers making installation trivial and results highly reproducible. The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. Where possible, these processes have been submitted to and installed from [nf-core/modules](https://github.com/nf-core/modules) in order to make them available to all nf-core pipelines, and to everyone within the Nextflow community! @@ -33,18 +33,21 @@ On release, automated continuous integration tests run the pipeline on a full-si ## Quick Start -1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=21.04.0`) +1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=21.10.3`) 2. Install any of [`Docker`](https://docs.docker.com/engine/installation/), [`Singularity`](https://www.sylabs.io/guides/3.0/user-guide/), [`Podman`](https://podman.io/), [`Shifter`](https://nersc.gitlab.io/development/shifter/how-to-use/) or [`Charliecloud`](https://hpc.github.io/charliecloud/) for full pipeline reproducibility _(please only use [`Conda`](https://conda.io/miniconda.html) as a last resort; see [docs](https://nf-co.re/usage/configuration#basic-configuration-profiles))_ 3. Download the pipeline and test it on a minimal dataset with a single command: ```console - nextflow run nf-core/bacass -profile test, + nextflow run nf-core/bacass -profile test,YOURPROFILE ``` + Note that some form of configuration will be needed so that Nextflow knows how to fetch the required software. This is usually done in the form of a config profile (`YOURPROFILE` in the example command above). You can chain multiple config profiles in a comma-separated string. + + > * The pipeline comes with config profiles called `docker`, `singularity`, `podman`, `shifter`, `charliecloud` and `conda` which instruct the pipeline to use the named tool for software management. For example, `-profile test,docker`. > * Please check [nf-core/configs](https://github.com/nf-core/configs#documentation) to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use `-profile ` in your command. This will enable either `docker` or `singularity` and set the appropriate execution settings for your local compute environment. - > * If you are using `singularity` then the pipeline will auto-detect this and attempt to download the Singularity images directly as opposed to performing a conversion from Docker images. If you are persistently observing issues downloading Singularity images directly due to timeout or network issues then please use the `--singularity_pull_docker_container` parameter to pull and convert the Docker image instead. Alternatively, it is highly recommended to use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to pre-download all of the required containers before running the pipeline and to set the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options to be able to store and re-use the images from a central location for future pipeline runs. + > * If you are using `singularity` and are persistently observing issues downloading Singularity images directly due to timeout or network issues, then you can use the `--singularity_pull_docker_container` parameter to pull and convert the Docker image instead. Alternatively, you can use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to download images first, before running the pipeline. Setting the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options enables you to store and re-use the images from a central location for future pipeline runs. > * If you are using `conda`, it is highly recommended to use the [`NXF_CONDA_CACHEDIR` or `conda.cacheDir`](https://www.nextflow.io/docs/latest/conda.html) settings to store the environments in a central location for future pipeline runs. 4. Start running your own analysis! diff --git a/assets/email_template.html b/assets/email_template.html index 332ae36b..ebf8e7a3 100644 --- a/assets/email_template.html +++ b/assets/email_template.html @@ -4,7 +4,7 @@ - + nf-core/bacass Pipeline Report diff --git a/assets/multiqc_config.yaml b/assets/multiqc_config.yaml index 0f3cd94d..228691b5 100644 --- a/assets/multiqc_config.yaml +++ b/assets/multiqc_config.yaml @@ -1,7 +1,7 @@ report_comment: > This report has been generated by the nf-core/bacass analysis pipeline. For information about how to interpret these results, please see the - documentation. + documentation. report_section_order: software_versions: order: -1000 diff --git a/assets/nf-core-bacass_logo.png b/assets/nf-core-bacass_logo.png deleted file mode 100644 index 75f926354e06081b16b2d7bf423d71ef5d424d6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18186 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 N*V0N-r4ojL{|7Bf$(jHF diff --git a/assets/nf-core-bacass_logo_light.png b/assets/nf-core-bacass_logo_light.png new file mode 100644 index 0000000000000000000000000000000000000000..644f00d9651b8d8ad5c1b031e9a6a53215a3eb05 GIT binary patch literal 11313 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 -Content-Disposition: inline; filename="nf-core-bacass_logo.png" +Content-Disposition: inline; filename="nf-core-bacass_logo_light.png" -<% out << new File("$projectDir/assets/nf-core-bacass_logo.png"). +<% out << new File("$projectDir/assets/nf-core-bacass_logo_light.png"). bytes. encodeBase64(). toString(). diff --git a/bin/scrape_software_versions.py b/bin/scrape_software_versions.py deleted file mode 100755 index df04fa4a..00000000 --- a/bin/scrape_software_versions.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python -from __future__ import print_function -import os - -results = {} -version_files = [x for x in os.listdir(".") if x.endswith(".version.txt")] -for version_file in version_files: - - software = version_file.replace(".version.txt", "") - if software == "pipeline": - software = "nf-core/bacass" - - with open(version_file) as fin: - version = fin.read().strip() - results[software] = version - -# Dump to YAML -print( - """ -id: 'software_versions' -section_name: 'nf-core/bacass Software Versions' -section_href: 'https://github.com/nf-core/bacass' -plot_type: 'html' -description: 'are collected at run time from the software output.' -data: | -
-""" -) -for k, v in sorted(results.items()): - print("
{}
{}
".format(k, v)) -print("
") - -# Write out as tsv file: -with open("software_versions.tsv", "w") as f: - for k, v in sorted(results.items()): - f.write("{}\t{}\n".format(k, v)) diff --git a/conf/base.config b/conf/base.config index afa50340..dd6a7ad7 100644 --- a/conf/base.config +++ b/conf/base.config @@ -54,4 +54,7 @@ process { errorStrategy = 'retry' maxRetries = 2 } + withName:CUSTOM_DUMPSOFTWAREVERSIONS { + cache = false + } } diff --git a/conf/modules.config b/conf/modules.config index 0b1bfdec..a0506a4d 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -1,32 +1,41 @@ /* ======================================================================================== - Config file for defining DSL2 per module options + Config file for defining DSL2 per module options and publishing paths ======================================================================================== Available keys to override module options: - args = Additional arguments appended to command in module. - args2 = Second set of arguments appended to command in module (multi-tool modules). - args3 = Third set of arguments appended to command in module (multi-tool modules). - publish_dir = Directory to publish results. - publish_by_meta = Groovy list of keys available in meta map to append as directories to "publish_dir" path - If publish_by_meta = true - Value of ${meta['id']} is appended as a directory to "publish_dir" path - If publish_by_meta = ['id', 'custompath'] - If "id" is in meta map and "custompath" isn't then "${meta['id']}/custompath/" - is appended as a directory to "publish_dir" path - If publish_by_meta = false / null - No directories are appended to "publish_dir" path - publish_files = Groovy map where key = "file_ext" and value = "directory" to publish results for that file extension - The value of "directory" is appended to the standard "publish_dir" path as defined above. - If publish_files = null (unspecified) - All files are published. - If publish_files = false - No files are published. - suffix = File name suffix for output files. + ext.args = Additional arguments appended to command in module. + ext.args2 = Second set of arguments appended to command in module (multi-tool modules). + ext.args3 = Third set of arguments appended to command in module (multi-tool modules). + ext.prefix = File name prefix for output files. ---------------------------------------------------------------------------------------- */ -params { - modules { - 'fastqc' { - args = "--quiet" - } - 'multiqc' { - args = "" - } +process { + + publishDir = [ + path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }, + mode: 'copy', + saveAs: { filename -> filename.equals('versions.yml') ? null : filename } + ] + + withName: SAMPLESHEET_CHECK { + publishDir = [ + path: { "${params.outdir}/pipeline_info" }, + mode: 'copy', + saveAs: { filename -> filename.equals('versions.yml') ? null : filename } + ] + } + + withName: FASTQC { + ext.args = '--quiet' } + + withName: CUSTOM_DUMPSOFTWAREVERSIONS { + publishDir = [ + path: { "${params.outdir}/pipeline_info" }, + mode: 'copy', + pattern: '*_versions.yml' + ] + } + } diff --git a/conf/test.config b/conf/test.config index 0d7c32bf..8401e6bc 100644 --- a/conf/test.config +++ b/conf/test.config @@ -16,8 +16,8 @@ params { // Limit resources so that this can run on GitHub Actions max_cpus = 2 - max_memory = 6.GB - max_time = 6.h + max_memory = '6.GB' + max_time = '6.h' // Input data // TODO nf-core: Specify the paths to your test data on nf-core/test-datasets diff --git a/docs/images/nf-core-bacass_logo.png b/docs/images/nf-core-bacass_logo.png deleted file mode 100644 index d37cb23f55cfd9379c3e03773c145e22a877e2ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 34789 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 diff --git a/docs/images/nf-core-bacass_logo_dark.png b/docs/images/nf-core-bacass_logo_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..6afe4e9c2cffc67f191c94816f7ee8ef6ad13f7b GIT binary patch literal 71210 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%0D6Aha9ZZvy3Owj0R@{kHIA1_W(q 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

&low&MXSpn);KPq8G2RtXB-1uz!9SQct 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

u-YP$4VeF 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 Ur!8Mfm$!s?)cQ!#A0C(f3!(=h&j0`b literal 0 HcmV?d00001 diff --git a/docs/images/nf-core-bacass_logo_light.png b/docs/images/nf-core-bacass_logo_light.png new file mode 100644 index 0000000000000000000000000000000000000000..6a16bb9278b3c2d03c07466d2df425c7495cc311 GIT binary patch literal 71089 zcmeEt`9IX_`~RRQS?ZKSWhn*~p=96c5GGq9OZHNfecuPCQz(&w!1jG0qM))u18{N;szxKLnntC7*Z0~7*=;B1!jv^4p5Gb_^hQ29NgTYTSd@O|5 zS3HI44fR<@BwC_WweNAg^K`t?ay|Ua^`zuS;o*5X;p5j0nLR_3TdTw-*C$<<{Vk$; z9`%au>-b1%=CCl=x~!Jp!Br{RFpzjKp!3X+Tb;*QRKss@Kb){h^c+@seV?p-3zMBT zv9)Zlu({<`v3Pc z_~QTk@G~L)&kz6ShyTBGp!b^mFYH1%8g&}PE+NMRdy{Rgwkaa9QvrRQY2HJz)6`6H z9;J$!8p?T$p0J;N*Ye!J#ykH8M)iUCxVX5E!@pK|Rzc1t45Gxe-2E^GvsRWhY(8G+ zqQw!LH!;zIl^)J$8$X^IcCItbD!;xEnF(K*M&+X@JSfW~(%%?AjAD}I{FvT)!b;+< zT`3RVvHyDV#tr{F?pFSzX|tN{P8k1QHN6RI-9sVD@-lUEm%l0Eg`Uqb{CpIznVgoC zqUmmd=@Irb{U+;BnnF@S4JpEd=f8=bxA|}L4A?vsm9JMY?xEj%PSrz{(B9T6zCrD{ z5aNCa{cB^cli-wq*o{Dpv7Lu_ua|VKlQa68K&C3~Q72#9XybNMzba}b4=Acza~8q2n+%iDoFDn0jDk39X?^7A)!^mJ;E z5ekGVYdquWg)k>J@LX5^<&$Ub>jptvS20#izP!}h(}bdq;~{4o<`Z~-?Z6?eBvmOx zsE#!^me;!Al9p_BB9-oh+Bc@3zYqDCn3hx{MhJ+VI+>dJOaT*E;koA-_dUK}Uzf&# zH;{fF7_10)<{MQM8t=)+Bc#9Hzz?%a`@_R0){SISt$Kn@K8L}>h6mZ|Sq!BZKB@H20kftU}^PiE` z)c*Xdd@3S@t0+sw_uO~aLtzgUG2d;xQ1Q*1H#0qHdV%)wP1#8svyWz%C}A74L_x?B3pf9H&Y@2X=|G$}7iYO?E5Lr+QZ zunjfr@njOx!!AI9VRd9th^kl#?3g$t5Dxfn?H4g>K($Nt+fHaOY#hv@QlJIXl)td!4Cw33#odkl6Y zV>S|OhL=y33;S(CMLA9S@}2)++OhBFrXf0zRg_T_+T~HTPwd7xJV6cPBJX{fB~&hK zs$Fc?B(tfBkrDJu$X3Q1{1zTNRk(@T;z!+JtsYJ#VQFEI95Bp+1d)p+`Gk3TG-5Wg zkhB!>_0%li8!7wS)(5l@KDF!}dm%NoRf{a39g|I_D;7#><0*1`M%3kp01AB_Dq!Zg z8ht}kcgMfVhs)|`f(tl+ixNr3KYnoDKRVH}!H24qCWtT&%xd}zW+opB3MoDNJ0-8f zNvx7d#yy3T+j3B!o%L;!;b>EGDQXB~+h}0EX^k<%)ZBpGVwTz%Bc=Z{6LNVVmQ)Zs z#qHX&f?Rw4S8Pz4H6Vlw2CL`ph1rxV>T3%^&1h1dBkPo8>RjJw|7HE<#P4E!4_OE` zO$@0HI!7pPZx!b@3)8f7f(6Vl`(n8hAxh@*>=H@8QQ)g9oK9SqBFr%3t$}fQ3U0|& zMTUI5{BLzyt1e{`H?CqHGJTzP#T38;zV<;^=nNbG6N-_k!KrUQDx)Z|AC(bG|5a8Z zB*H@M#uON%NKm+sWqkHO`)aB@we3grs9;DMV?Q{%PqLj~`hASTUIF*q`ZO5WR)wVFI`G?Zxevi{$Td5LndKR;aC(U=|9wR~L8w;+zr-%IHsbY> zUgGTk{6DWrVb zYX7qj`>+ae$t5+}$|T_!B3=Erhn`P}k1ai*^PzUqmU{4eDXuat%oMLHRxej$e~5m@ z@ADVp?D3O)y6!#xyXd$s{yrf~zYM$Yrd~^{xM%^*VgG&MleV6Y&|SUNwG!INi~rl; z<-XXdqpn!99)UghSN}nCVm|NOx&~&TmiGceJ?{6R>laTmSZ>pxJbelcMsk4R0F=Ar(?q*%!}BhZw%+9K`8y{Yh!MT%%c;Bib&k(wxLRjmW=N{ro zoje;XgQ^~##P@&C)S#ViS*=Lu%Jg6vf7wA7B1zehn!53h9Ut=hiFVdZ2A1)BWO+Or zT}sR*gJqqhOx-8b1SCR0`&Ue?BhO8gDxoY*R=fY z+Cyn|_k)xr7Y`wB{C-T)JdQ-^IL_#4Kt|xti;{O2Uif`>)vlM+z~WAes&vp2#~e;> zaP#^zhn)Ghwj{nES?XIu)mFnEPiGi7&MHYgMRFdBqLYyRcM0|3NrSwRzt{zDC$Q16 z*lJ*$9KIG@s!K*lv(_p8gm-n5bjuuJKPNIbLluNw9-=Anc+g>>{ftA1)Liqyomg7G z0lZGlRAqUVOzOE5hF~nSdqkDH#ahTn%b<|fSG~?U$lf?xD}R^!j=>M6H8HyWF6y2} zPGPZ%iKNdTp7uW4JWgAQE8vm;X_WJc)Enn#$({*pabQ-s4krlc*`UTUP?m@IrR(4uk6XT&bDN%A5aA~}3fQZ}+Rd6c3 z*IAG-N{$P(j4Q>Srfr2tpV8=0h{!#~3-AoOv!u9tWom_0YBxR+7|^?x3!H1(U)HeMcJvM;GiZDK%TC8~?<`}ApK9*l&Oz?(AV;afU?!7R7^1E3 zn(zjAZ>L6+)k_BZ;z(Js8zvb4U#rVK@}KTN_B?4j^DOxi6XO26e;wx5>Meq@OeH16 zPKhP&D9lsS_dDnqJvA_TPayL?T-&Eo4MaN$Vsh~LOFAw$sP98vj^)e3erB(Ix)0Ed zcRcmT-^mAK97kIoOzJos^3BBIn=oowuyWRsVNp-Q8QI%4?47^vYmBj55kB(7-5G-Jw=*jed)*MV}zlKa?!7quxNI9Dqv5~0*qxF{ z-|ays&_rj1kTx$F^uK@^zBGGr$N8@D5U_4!fjHEh%d}?#HzMqS1VBYf&^KYut?s3z z#x(Dl-G0}fkFA#VYCT#)Cajcq(Xx9}P9Gs}$ynv!cB`zU=s>7GEmrr*<+Gsc;!_6q z1=Fl1&esa#1l?YLx5t#zFs9X%$7g7LW1T&4gw?plYc~G0M)WlGL4fi~%|d=l{ONR0 z(ExtJ#m(uPIko8AUgyCi5<6xC?H?P${GQ>p{S!2bzAysv+#gde=;uWi-SN!d&Z0cl z=Vxa<6L=w~xspnfYZmT}S`g$EU~=c)X2)i+nZgjfLi{{7BR9A9V@M?IiAzae66wR{ zbVBUFuw%J$iY49n2)JM4(tQT$^3x(BBAJp1iSJ3%-4{`4VM1nRNn{A0Wy;eaWAc95 zmX5rTQxA~AmcS{swE)2-o_n~AHzPLsJI(%{&@RtXp}uWD?G!-#W|yZ}HlXQ(*l93tqTy}~zd~*$CAgPi|Hx9G?WY5}M z02i&|#Gzt|tMhtL2iunNy9`lKjcFtdl5U(c0=}qQSucG4Onn{mfpPuC~ zUODq^;@FC~c)^rubE~#vvhN#etKRV16JtlmZIYdM@X)Bpn0CtGAJ@B}v82Whya624 zAWNK=gJR5mxMhoFA9d`R9<}|+y@96bmehO5?J{6J#mA%^uw=C3g0&=Yhgqk{lD6Pl zA2MNCrS_F=zGQJRW^*O@TbhT;+S9Ov8I?CaYg*B%^XJm?+K0UD#yYZ6KNnk=2?@=p zc=mdfEVeY#XB$fMFMFYgxxJ-=GENxkH(mxUP$i=}qjnpYz~jsE$`XWx{Ko z{su~~zYEKQH!jQXa{LphLJz|!xE7Bz&XW0HhkW@%MrHfMT?G}tx!TNXzI;CFJ5KS| z+d?rqica4@b;u}fj(?1w;vxQs=2i$^nPv}O^2q1a?fY1*LTE(|m4YKGJh`lI0QgB5 zLd7Q`gSl>EmtO3M%k!8F{Q_tbt)Q?GgUEKEQ{K}&yDmX?P&-6cwO7Pf5_I02N$U;D z^>}L)h~66K!L}xBeQR1XE4$^_To%#xacxYw<_$IFVFHr~HRaRStq6wUxxh^9K{nwv zGSbBg62eHHrLdO9f=R$peChd;#blkTAnf=uz@z{+E z09mH;dkVd2@B;WHFHWdCk-9TsY`B4HF0mG@Y0w_n%lfxep=Py_`>pF8HAic zI5>Dzt5K|fzC3L9WK7<5F*_$RAK>TKRTAWIyYol#>f`FxkO*AF7vCO4Eh?p$q_x59cLmsMlbT+}V zaI|PtAk*V&lNx5bTV?I&R}u~D-glvDnrJQ!d9;*d={1AV_H|(ab9o^1DGx zEg*8wH=cWZ&jMWl(Bb3=VVJ2CsbSv&R{t)jDfS@mUP+~{)vZwNT@_+ChG}txxpgN5 zoEUkoKQHx6+acPT(tX;P1!#WopOG#Ay=mGdgRh0xa7Yzn`F)du8^WH4JELXyeXy9XZNETOysflQOlCGBF*;iJnGrL6%1H`;Ol5>#tPMvU^qdFg6f+ zJ15{3Uw%mDwl9BEHY@WzC}z+7&<^JkfyR=ThRTwkPyL*}H=xoj`;$p= zzvcr(!zV$+TpgsJOE5~&Iu_a!B5G-Szdsm3JB-9Fv?8G!dg;0Im|<{;?oNIT>Mw_u zc)4N9LGY&l#N!Pr@+CYtT`7<%?rS-11^B9A3X|D zz`k>awRwQ!@Zpjy&@Rq`BKE}8fF_hR1+je_VFF#Pw4WYkP`_+9>`NqEb*gHg1zKK# z9$UEbB;f-%d{2K8i4zlOMLs6c2Alex9lj=y7xD?ln8j|GV)T%Ht{_O8$oT_~^dpxb zh6WP}2HLBBFTy$k4vuWXZp^LOJN}+>so%B{$y?m^&t!i3t`;ZptDkukl%4!I;I-4amD{4_C|db zZO)L6QpS)3z?ueRT_Op~KDooYukNekjPxi;Afr7!vZ@W`8FH7KQEehTFy}6Xhdg}Bj%BxLhz^5<=~ zrJ&XZ1!n?b)vw=MrncjT`pUz!c7_Mm_2vn-!H_(%@uWNm`l$j4BYD3>1G>f&!KDEh zuXthGF+96Nj(Oc46AUNoKh0wc3yq*^&k*k3OQ%^>h~DYB_{L#K11?8(IF=tl4VlX` zMOG$&kXWFZlMd!&o2S^Ck@w$&+a4-RQxde8 zhGZVKLiQTS?|R%5$A%c8!MMTUp3#~rR4ufb%a_T=gv~&9CX$k42Q1}xh5@QxJ5-Se zO<11i9!(6?i7+79&@ktMc#3qHQhSn3jY# zn()HALZ!onAgu|0NiBT3VTe(OOFYa_MqYyO+Igr4F>MH!VT0Sdb_l2_5AA)BkRplz zY67NS#Pi%uH)8<~6fiX}J=utEmR9nJ$b(Slx}(J%bj-eu-&-8ZJ$G2ML6xQA zAn$*S1b*Nrux5H7vK9w{fGcQ-XFC?hb{WqE`jYR|FDtK<7QdrH5269ZQVSZR5JsC% zYD*y4oDl33NA7(pbp}7Lf=ANz3oMdIKMMhB_~RphsVuLXpoz@ncSX`BrMlA2&3=Le zr=R#GVf5O_Xw@XE`ka;gE+ojMDkPy4EYh2}2^PujSTtg^Dwjxl`x8^S*#Bo-a)~MA z>X3;%V(y9P{#itTa%OHjdaY7hm6%u0FA6rueZa!(z z55fR4_!W(|Y)7QOjkW(ASX(RZ05^mIM!wMa#KRYB6NL2nLt0$|L~%@$H13UkWcF=r z`R6Sb*U{lvTj&`WWK&2m$Hbo+Hj_uVHq@qrle~7EG{CIF^po4H9ib5MAw#`nF)#2a zskzw?mkZ`ZT3m&w({4j*Y3f&}v`ym3{rX>ST8FkF4wX+EYy#6Da?BGl^l2ksF*uF_ zSf~FIiseqVB)Xk7I-U)Z3xPLz)#r(2_XdOp+Q|V>M&R-JqC5!o-U^;CyNQJ96Fkol z0ui+IH8F;9L=Cclw!91!P9v0{6Ux$3o=Kw61;|qUDTx1^F2F78u$?LlqwQc#!YOyj z3wao0qG>yrwC#IMe%(Q5{p2e7gCJtkB>*DP;%-TMG&e^bSEfYxsr6E4u8>&@`vA)k zxdcFVEn&Lu2qsQM&ZGW+Xv1=NzHkVxy8(U~=QJ_fFaS@1l%flfx{Z7aNx5?ikptdu z{Iz(pIxZe5Lz~Z)10m7UbOc0FEs_(8Gq;xm5{Y)7VO{DbvU5p+_xE>uE!9gj!Iaau z%TFIXWBQcl8QS$m&d-|+{G1^WoC~bS1nb3WC$J$>;x_+XN(!O`AFjVa!rEXG5`K;b zLkucjdLoFq=2sw)uk#>uh1rhcpfy5-0i{s0rF|25=m!O-h2=Vit8$brH`j`EeQw`? zL6`I+b)0m}!FGYHzOt7qDQX zIS6n~695KoovaVSl!6c;GgU4mm$Y?s0f=D8&_)T~62QOo>)(U|a=<8| zmh<}3Vo5buv9oOvSK7;t4{f@qTbfzW%O{eaBbhLPRl$D5)gGw(des^iu6^*W01VD= zV`SCyCXV!F^g(CP^s5eD;YpQ(DVV+nE2t1WsC?LjMo#~>30v%zN7F=bEEDaTetXht zD1o#E_J1y^GsUSdbxb#c*pR9T1iLgE)cIhl2K;)5od|btFs`W=y+@_Ni2Go$G z@Q{h=CgX5+t#?(wO8mjy&(d?s1W;^(en=qu=JwRZH31Ya4A+#T-}62FOj(4Ize6K}@W6YZr^?Dem#2jOqCXeRmww! zGoXHbb(q>X%pi-d^xzQ?UExb;e0Y9E7+$IvUKF2wG*%JQ^{QuCsPZgsEN-9sivbU` z^o-vqspl3owq}(i0*$Rkr}*|_c^%3<0OR+;sp0(+>IjV)o+Gz$AOr8Yi18q}9&GBb zhCVk~4W$D)%R_z?rKpk>Y~a!^-}tp}xLZErW@WFlQsU52v7F)kHR6QLkLPa`e7PWu zP*($;n`-Gse6jdZF{fFHdOy&oao;`%FPORU1nYRZVCpQF<}Y*}i+P1BV@o7}St8x_r>2-9wNP;M8 zcD9UX^E6p$%+jaBD+&%Za`9O#c7)A0(g;|qKb}NcWL6&jTBlfN|LX0O_N>=8LS}~s zEG>-LxD6U{;Q6zLS7gq*oU)Xj)4UHIuOt8#v3%G9OgVIN1CN5DR`a*hn4WcMhgXDB zET3mhL~RFhA}g0OW>3rX=Z(1R8A>B*u+jHze?P<-rw@NK&kIl&y4o0 z%LA25?zFbbb0q!k(@9RF=!8@GnzM3FN?D7!<#~RA`YxsQ0HN@LgA74Kd!kPf;JS7( z{bOMTc9-*QcbLo2OA#@Kh`ezN@SyqA0S*o(*?$tUfu^W(7FFBZ2>=wKiV0x*H62-`5Fclu*L zA~Ipi-Mq2=6WV6m{YiUEZ;SypCJhiu0!L}LK>g?tkyI=$n*VCQQ_2pQKnKvZ`dcf( zW!^7Wh9_W1bPC5%$)`mLLn%YIqI6mGFsa$VK&*8n>!rELxi1ZUF(i)7X}Hj`zyj*c{HII61u=Y<{rl8{jrhqkAEU5q=%DQdXOIh0xDvYHV8Foh+13dBI$3Yd4~3b%RKPN&QF6obt$IcIBy*HauFFq|vp$<%f`KJ5a8XFyi<8}qXRuV}*ahZQ{g zB#I4Eenr^N1*2yg6?F<4vjkE^Y?n-RvKCWFXJJauev8uSfw0=yUMsh4+Z)tnp0TtN zhyM5PYvE0}LBHz<(y1Rt%#K}6GXFh~JA5SnU z(4kC|If7CaB`fZtoKX}kjSw>H4J{xGWQ8v&vsvc129b3({jj$U9dAK)8^_krX6J!# zIxW_rTP7Mp)wT=zd62oUF0=NxDXnf+`wUUv71&SpDi__ySdKB&|8%(&Ba<$!0N(do?Y0_U~$B}&=QlWP~%Hr~FH$qctY?fm)58_koMPp*h( zJn3j+J$KN@k#?RE6iF6U1l#d{Cx%pb1cTHP~un?rQDjRQ5zSi@)HkbH|YsJFE} z%IdEucy<51w_zb#xgMV1E)d6-W~&UlNK=dTyp9)j12D5bqpWdPHZl%RmduPR=4A;e0bB0cAG9A(?*V0)a!t%S*Pumi8vLLfTp)urZ-phYc`kn znQgB;!M50G<(_T&5zyFZTCoXVP2ukAo;;Y=wPf?8DSysHM5M?H_ zM?Wme+|<<6)Qt}@hB3?{hFEjUbOat=K2*|1U#4c`%Hy{-#+zE$7d#W!Jx0&BJ4!lA zfa!-QG4}*ZK9e$>O|?5TBlv}c?B5%;0m^F+?`B+!rxzE*;;)*`YcRhV4_Pc=nV4M|q$8`7S9o({=o;ipR}!KWvPa>3ogeEH1k6m9Ibd z*&c6fMz6k4v9uNlNMFG7E4_Rd&GH2dKT9!=t9!6PxVA|wDCi6ghLEN0zV&88OHD1q zXW-+DVY*u(O|nr_*!s|ws&Z<�ev`Q}H7y#R1zKkC5n?0_OP7^FqWWeXhX0t0pNK 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

)bNtXB<>| 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 diff --git a/docs/usage.md b/docs/usage.md index b50bca2f..b116d5e0 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -181,42 +181,6 @@ process { > **NB:** We specify just the process name i.e. `STAR_ALIGN` in the config file and not the full task name string that is printed to screen in the error message or on the terminal whilst the pipeline is running i.e. `RNASEQ:ALIGN_STAR:STAR_ALIGN`. You may get a warning suggesting that the process selector isn't recognised but you can ignore that if the process name has been specified correctly. This is something that needs to be fixed upstream in core Nextflow. -### Tool-specific options - -For the ultimate flexibility, we have implemented and are using Nextflow DSL2 modules in a way where it is possible for both developers and users to change tool-specific command-line arguments (e.g. providing an additional command-line argument to the `STAR_ALIGN` process) as well as publishing options (e.g. saving files produced by the `STAR_ALIGN` process that aren't saved by default by the pipeline). In the majority of instances, as a user you won't have to change the default options set by the pipeline developer(s), however, there may be edge cases where creating a simple custom config file can improve the behaviour of the pipeline if for example it is failing due to a weird error that requires setting a tool-specific parameter to deal with smaller / larger genomes. - -The command-line arguments passed to STAR in the `STAR_ALIGN` module are a combination of: - -* Mandatory arguments or those that need to be evaluated within the scope of the module, as supplied in the [`script`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/modules/nf-core/software/star/align/main.nf#L49-L55) section of the module file. - -* An [`options.args`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/modules/nf-core/software/star/align/main.nf#L56) string of non-mandatory parameters that is set to be empty by default in the module but can be overwritten when including the module in the sub-workflow / workflow context via the `addParams` Nextflow option. - -The nf-core/rnaseq pipeline has a sub-workflow (see [terminology](https://github.com/nf-core/modules#terminology)) specifically to align reads with STAR and to sort, index and generate some basic stats on the resulting BAM files using SAMtools. At the top of this file we import the `STAR_ALIGN` module via the Nextflow [`include`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/subworkflows/nf-core/align_star.nf#L10) keyword and by default the options passed to the module via the `addParams` option are set as an empty Groovy map [here](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/subworkflows/nf-core/align_star.nf#L5); this in turn means `options.args` will be set to empty by default in the module file too. This is an intentional design choice and allows us to implement well-written sub-workflows composed of a chain of tools that by default run with the bare minimum parameter set for any given tool in order to make it much easier to share across pipelines and to provide the flexibility for users and developers to customise any non-mandatory arguments. - -When including the sub-workflow above in the main pipeline workflow we use the same `include` statement, however, we now have the ability to overwrite options for each of the tools in the sub-workflow including the [`align_options`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/workflows/rnaseq.nf#L225) variable that will be used specifically to overwrite the optional arguments passed to the `STAR_ALIGN` module. In this case, the options to be provided to `STAR_ALIGN` have been assigned sensible defaults by the developer(s) in the pipeline's [`modules.config`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/modules.config#L70-L74) and can be accessed and customised in the [workflow context](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/workflows/rnaseq.nf#L201-L204) too before eventually passing them to the sub-workflow as a Groovy map called `star_align_options`. These options will then be propagated from `workflow -> sub-workflow -> module`. - -As mentioned at the beginning of this section it may also be necessary for users to overwrite the options passed to modules to be able to customise specific aspects of the way in which a particular tool is executed by the pipeline. Given that all of the default module options are stored in the pipeline's `modules.config` as a [`params` variable](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/modules.config#L24-L25) it is also possible to overwrite any of these options via a custom config file. - -Say for example we want to append an additional, non-mandatory parameter (i.e. `--outFilterMismatchNmax 16`) to the arguments passed to the `STAR_ALIGN` module. Firstly, we need to copy across the default `args` specified in the [`modules.config`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/modules.config#L71) and create a custom config file that is a composite of the default `args` as well as the additional options you would like to provide. This is very important because Nextflow will overwrite the default value of `args` that you provide via the custom config. - -As you will see in the example below, we have: - -* appended `--outFilterMismatchNmax 16` to the default `args` used by the module. -* changed the default `publish_dir` value to where the files will eventually be published in the main results directory. -* appended `'bam':''` to the default value of `publish_files` so that the BAM files generated by the process will also be saved in the top-level results directory for the module. Note: `'out':'log'` means any file/directory ending in `out` will now be saved in a separate directory called `my_star_directory/log/`. - -```nextflow -params { - modules { - 'star_align' { - args = "--quantMode TranscriptomeSAM --twopassMode Basic --outSAMtype BAM Unsorted --readFilesCommand zcat --runRNGseed 0 --outFilterMultimapNmax 20 --alignSJDBoverhangMin 1 --outSAMattributes NH HI AS NM MD --quantTranscriptomeBan Singleend --outFilterMismatchNmax 16" - publish_dir = "my_star_directory" - publish_files = ['out':'log', 'tab':'log', 'bam':''] - } - } -} -``` - ### Updating containers The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. If for some reason you need to use a different version of a particular tool with the pipeline then you just need to identify the `process` name and override the Nextflow `container` definition for that process using the `withName` declaration. For example, in the [nf-core/viralrecon](https://nf-co.re/viralrecon) pipeline a tool called [Pangolin](https://github.com/cov-lineages/pangolin) has been used during the COVID-19 pandemic to assign lineages to SARS-CoV-2 genome sequenced samples. Given that the lineage assignments change quite frequently it doesn't make sense to re-release the nf-core/viralrecon everytime a new version of Pangolin has been released. However, you can override the default container used by the pipeline by creating a custom config file and passing it as a command-line argument via `-c custom.config`. diff --git a/lib/NfcoreSchema.groovy b/lib/NfcoreSchema.groovy index 8d6920dd..40ab65f2 100755 --- a/lib/NfcoreSchema.groovy +++ b/lib/NfcoreSchema.groovy @@ -105,9 +105,13 @@ class NfcoreSchema { // Collect expected parameters from the schema def expectedParams = [] + def enums = [:] for (group in schemaParams) { for (p in group.value['properties']) { expectedParams.push(p.key) + if (group.value['properties'][p.key].containsKey('enum')) { + enums[p.key] = group.value['properties'][p.key]['enum'] + } } } @@ -155,7 +159,7 @@ class NfcoreSchema { println '' log.error 'ERROR: Validation of pipeline parameters failed!' JSONObject exceptionJSON = e.toJSON() - printExceptions(exceptionJSON, params_json, log) + printExceptions(exceptionJSON, params_json, log, enums) println '' has_error = true } @@ -202,7 +206,7 @@ class NfcoreSchema { } def type = '[' + group_params.get(param).type + ']' def description = group_params.get(param).description - def defaultValue = group_params.get(param).default ? " [default: " + group_params.get(param).default.toString() + "]" : '' + def defaultValue = group_params.get(param).default != null ? " [default: " + group_params.get(param).default.toString() + "]" : '' def description_default = description + colors.dim + defaultValue + colors.reset // Wrap long description texts // Loosely based on https://dzone.com/articles/groovy-plain-text-word-wrap @@ -260,13 +264,12 @@ class NfcoreSchema { // Get pipeline parameters defined in JSON Schema def Map params_summary = [:] - def blacklist = ['hostnames'] def params_map = paramsLoad(getSchemaPath(workflow, schema_filename=schema_filename)) for (group in params_map.keySet()) { def sub_params = new LinkedHashMap() def group_params = params_map.get(group) // This gets the parameters of that particular group for (param in group_params.keySet()) { - if (params.containsKey(param) && !blacklist.contains(param)) { + if (params.containsKey(param)) { def params_value = params.get(param) def schema_value = group_params.get(param).default def param_type = group_params.get(param).type @@ -330,7 +333,7 @@ class NfcoreSchema { // // Loop over nested exceptions and print the causingException // - private static void printExceptions(ex_json, params_json, log) { + private static void printExceptions(ex_json, params_json, log, enums, limit=5) { def causingExceptions = ex_json['causingExceptions'] if (causingExceptions.length() == 0) { def m = ex_json['message'] =~ /required key \[([^\]]+)\] not found/ @@ -346,11 +349,20 @@ class NfcoreSchema { else { def param = ex_json['pointerToViolation'] - ~/^#\// def param_val = params_json[param].toString() - log.error "* --${param}: ${ex_json['message']} (${param_val})" + if (enums.containsKey(param)) { + def error_msg = "* --${param}: '${param_val}' is not a valid choice (Available choices" + if (enums[param].size() > limit) { + log.error "${error_msg} (${limit} of ${enums[param].size()}): ${enums[param][0..limit-1].join(', ')}, ... )" + } else { + log.error "${error_msg}: ${enums[param].join(', ')})" + } + } else { + log.error "* --${param}: ${ex_json['message']} (${param_val})" + } } } for (ex in causingExceptions) { - printExceptions(ex, params_json, log) + printExceptions(ex, params_json, log, enums) } } diff --git a/lib/NfcoreTemplate.groovy b/lib/NfcoreTemplate.groovy index 44551e0a..2fc0a9b9 100755 --- a/lib/NfcoreTemplate.groovy +++ b/lib/NfcoreTemplate.groovy @@ -19,27 +19,16 @@ class NfcoreTemplate { } // - // Check params.hostnames + // Warn if a -profile or Nextflow config has not been provided to run the pipeline // - public static void hostName(workflow, params, log) { - Map colors = logColours(params.monochrome_logs) - if (params.hostnames) { - try { - def hostname = "hostname".execute().text.trim() - params.hostnames.each { prof, hnames -> - hnames.each { hname -> - if (hostname.contains(hname) && !workflow.profile.contains(prof)) { - log.info "=${colors.yellow}====================================================${colors.reset}=\n" + - "${colors.yellow}WARN: You are running with `-profile $workflow.profile`\n" + - " but your machine hostname is ${colors.white}'$hostname'${colors.reset}.\n" + - " ${colors.yellow_bold}Please use `-profile $prof${colors.reset}`\n" + - "=${colors.yellow}====================================================${colors.reset}=" - } - } - } - } catch (Exception e) { - log.warn "[$workflow.manifest.name] Could not determine 'hostname' - skipping check. Reason: ${e.message}." - } + public static void checkConfigProvided(workflow, log) { + if (workflow.profile == 'standard' && workflow.configFiles.size() <= 1) { + log.warn "[$workflow.manifest.name] You are attempting to run the pipeline without any custom configuration!\n\n" + + "This will be dependent on your local compute environment but can be achieved via one or more of the following:\n" + + " (1) Using an existing pipeline profile e.g. `-profile docker` or `-profile singularity`\n" + + " (2) Using an existing nf-core/configs for your Institution e.g. `-profile crick` or `-profile uppmax`\n" + + " (3) Using your own local custom config e.g. `-c /path/to/your/custom.config`\n\n" + + "Please refer to the quick start section and usage docs for the pipeline.\n " } } @@ -168,7 +157,6 @@ class NfcoreTemplate { log.info "-${colors.purple}[$workflow.manifest.name]${colors.red} Pipeline completed successfully, but with errored process(es) ${colors.reset}-" } } else { - hostName(workflow, params, log) log.info "-${colors.purple}[$workflow.manifest.name]${colors.red} Pipeline completed with errors${colors.reset}-" } } diff --git a/lib/Utils.groovy b/lib/Utils.groovy index 18173e98..1b88aec0 100755 --- a/lib/Utils.groovy +++ b/lib/Utils.groovy @@ -37,11 +37,4 @@ class Utils { "===================================================================================" } } - - // - // Join module args with appropriate spacing - // - public static String joinModuleArgs(args_list) { - return ' ' + args_list.join(' ') - } } diff --git a/lib/WorkflowMain.groovy b/lib/WorkflowMain.groovy index 6e61e6a5..2db15275 100755 --- a/lib/WorkflowMain.groovy +++ b/lib/WorkflowMain.groovy @@ -61,6 +61,9 @@ class WorkflowMain { // Print parameter summary log to screen log.info paramsSummaryLog(workflow, params, log) + // Check that a -profile or Nextflow config has been provided to run the pipeline + NfcoreTemplate.checkConfigProvided(workflow, log) + // Check that conda channels are set-up correctly if (params.enable_conda) { Utils.checkCondaChannels(log) @@ -69,9 +72,6 @@ class WorkflowMain { // Check AWS batch settings NfcoreTemplate.awsBatch(workflow, params) - // Check the hostnames against configured profiles - NfcoreTemplate.hostName(workflow, params, log) - // Check input has been provided if (!params.input) { log.error "Please provide an input samplesheet to the pipeline e.g. '--input samplesheet.csv'" diff --git a/modules.json b/modules.json index 7d548cca..b630d17f 100644 --- a/modules.json +++ b/modules.json @@ -3,12 +3,15 @@ "homePage": "https://github.com/nf-core/bacass", "repos": { "nf-core/modules": { + "custom/dumpsoftwareversions": { + "git_sha": "20d8250d9f39ddb05dfb437603aaf99b5c0b2b41" + }, "fastqc": { - "git_sha": "e937c7950af70930d1f34bb961403d9d2aa81c7d" + "git_sha": "9d0cad583b9a71a6509b754fdf589cbfbed08961" }, "multiqc": { - "git_sha": "e937c7950af70930d1f34bb961403d9d2aa81c7d" + "git_sha": "20d8250d9f39ddb05dfb437603aaf99b5c0b2b41" } } } -} +} \ No newline at end of file diff --git a/modules/local/functions.nf b/modules/local/functions.nf deleted file mode 100644 index da9da093..00000000 --- a/modules/local/functions.nf +++ /dev/null @@ -1,68 +0,0 @@ -// -// Utility functions used in nf-core DSL2 module files -// - -// -// Extract name of software tool from process name using $task.process -// -def getSoftwareName(task_process) { - return task_process.tokenize(':')[-1].tokenize('_')[0].toLowerCase() -} - -// -// Function to initialise default values and to generate a Groovy Map of available options for nf-core modules -// -def initOptions(Map args) { - def Map options = [:] - options.args = args.args ?: '' - options.args2 = args.args2 ?: '' - options.args3 = args.args3 ?: '' - options.publish_by_meta = args.publish_by_meta ?: [] - options.publish_dir = args.publish_dir ?: '' - options.publish_files = args.publish_files - options.suffix = args.suffix ?: '' - return options -} - -// -// Tidy up and join elements of a list to return a path string -// -def getPathFromList(path_list) { - def paths = path_list.findAll { item -> !item?.trim().isEmpty() } // Remove empty entries - paths = paths.collect { it.trim().replaceAll("^[/]+|[/]+\$", "") } // Trim whitespace and trailing slashes - return paths.join('/') -} - -// -// Function to save/publish module results -// -def saveFiles(Map args) { - if (!args.filename.endsWith('.version.txt')) { - def ioptions = initOptions(args.options) - def path_list = [ ioptions.publish_dir ?: args.publish_dir ] - if (ioptions.publish_by_meta) { - def key_list = ioptions.publish_by_meta instanceof List ? ioptions.publish_by_meta : args.publish_by_meta - for (key in key_list) { - if (args.meta && key instanceof String) { - def path = key - if (args.meta.containsKey(key)) { - path = args.meta[key] instanceof Boolean ? "${key}_${args.meta[key]}".toString() : args.meta[key] - } - path = path instanceof String ? path : '' - path_list.add(path) - } - } - } - if (ioptions.publish_files instanceof Map) { - for (ext in ioptions.publish_files) { - if (args.filename.endsWith(ext.key)) { - def ext_list = path_list.collect() - ext_list.add(ext.value) - return "${getPathFromList(ext_list)}/$args.filename" - } - } - } else if (ioptions.publish_files == null) { - return "${getPathFromList(path_list)}/$args.filename" - } - } -} diff --git a/modules/local/get_software_versions.nf b/modules/local/get_software_versions.nf deleted file mode 100644 index d7a9a92e..00000000 --- a/modules/local/get_software_versions.nf +++ /dev/null @@ -1,33 +0,0 @@ -// Import generic module functions -include { saveFiles } from './functions' - -params.options = [:] - -process GET_SOFTWARE_VERSIONS { - publishDir "${params.outdir}", - mode: params.publish_dir_mode, - saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'pipeline_info', meta:[:], publish_by_meta:[]) } - - conda (params.enable_conda ? "conda-forge::python=3.8.3" : null) - if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) { - container "https://depot.galaxyproject.org/singularity/python:3.8.3" - } else { - container "quay.io/biocontainers/python:3.8.3" - } - - cache false - - input: - path versions - - output: - path "software_versions.tsv" , emit: tsv - path 'software_versions_mqc.yaml', emit: yaml - - script: // This script is bundled with the pipeline, in nf-core/bacass/bin/ - """ - echo $workflow.manifest.version > pipeline.version.txt - echo $workflow.nextflow.version > nextflow.version.txt - scrape_software_versions.py &> software_versions_mqc.yaml - """ -} diff --git a/modules/local/samplesheet_check.nf b/modules/local/samplesheet_check.nf index e5ba91c2..322bd1e9 100644 --- a/modules/local/samplesheet_check.nf +++ b/modules/local/samplesheet_check.nf @@ -1,31 +1,27 @@ -// Import generic module functions -include { saveFiles } from './functions' - -params.options = [:] - process SAMPLESHEET_CHECK { tag "$samplesheet" - publishDir "${params.outdir}", - mode: params.publish_dir_mode, - saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'pipeline_info', meta:[:], publish_by_meta:[]) } conda (params.enable_conda ? "conda-forge::python=3.8.3" : null) - if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) { - container "https://depot.galaxyproject.org/singularity/python:3.8.3" - } else { - container "quay.io/biocontainers/python:3.8.3" - } + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/python:3.8.3' : + 'quay.io/biocontainers/python:3.8.3' }" input: path samplesheet output: - path '*.csv' + path '*.csv' , emit: csv + path "versions.yml", emit: versions script: // This script is bundled with the pipeline, in nf-core/bacass/bin/ """ check_samplesheet.py \\ $samplesheet \\ samplesheet.valid.csv + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + python: \$(python --version | sed 's/Python //g') + END_VERSIONS """ } diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf b/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf new file mode 100644 index 00000000..934bb467 --- /dev/null +++ b/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf @@ -0,0 +1,21 @@ +process CUSTOM_DUMPSOFTWAREVERSIONS { + label 'process_low' + + // Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container + conda (params.enable_conda ? "bioconda::multiqc=1.11" : null) + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/multiqc:1.11--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.11--pyhdfd78af_0' }" + + input: + path versions + + output: + path "software_versions.yml" , emit: yml + path "software_versions_mqc.yml", emit: mqc_yml + path "versions.yml" , emit: versions + + script: + def args = task.ext.args ?: '' + template 'dumpsoftwareversions.py' +} diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml b/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml new file mode 100644 index 00000000..5b5b8a60 --- /dev/null +++ b/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml @@ -0,0 +1,34 @@ +name: custom_dumpsoftwareversions +description: Custom module used to dump software versions within the nf-core pipeline template +keywords: + - custom + - version +tools: + - custom: + description: Custom module used to dump software versions within the nf-core pipeline template + homepage: https://github.com/nf-core/tools + documentation: https://github.com/nf-core/tools + licence: ['MIT'] +input: + - versions: + type: file + description: YML file containing software versions + pattern: "*.yml" + +output: + - yml: + type: file + description: Standard YML file containing software versions + pattern: "software_versions.yml" + - mqc_yml: + type: file + description: MultiQC custom content YML file containing software versions + pattern: "software_versions_mqc.yml" + - versions: + type: file + description: File containing software versions + pattern: "versions.yml" + +authors: + - "@drpatelh" + - "@grst" diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py b/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py new file mode 100644 index 00000000..d1390392 --- /dev/null +++ b/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python + +import yaml +import platform +from textwrap import dedent + + +def _make_versions_html(versions): + html = [ + dedent( + """\\ + + + + + + + + + + """ + ) + ] + for process, tmp_versions in sorted(versions.items()): + html.append("") + for i, (tool, version) in enumerate(sorted(tmp_versions.items())): + html.append( + dedent( + f"""\\ + + + + + + """ + ) + ) + html.append("") + html.append("
Process Name Software Version
{process if (i == 0) else ''}{tool}{version}
") + return "\\n".join(html) + + +versions_this_module = {} +versions_this_module["${task.process}"] = { + "python": platform.python_version(), + "yaml": yaml.__version__, +} + +with open("$versions") as f: + versions_by_process = yaml.load(f, Loader=yaml.BaseLoader) | versions_this_module + +# aggregate versions by the module name (derived from fully-qualified process name) +versions_by_module = {} +for process, process_versions in versions_by_process.items(): + module = process.split(":")[-1] + try: + assert versions_by_module[module] == process_versions, ( + "We assume that software versions are the same between all modules. " + "If you see this error-message it means you discovered an edge-case " + "and should open an issue in nf-core/tools. " + ) + except KeyError: + versions_by_module[module] = process_versions + +versions_by_module["Workflow"] = { + "Nextflow": "$workflow.nextflow.version", + "$workflow.manifest.name": "$workflow.manifest.version", +} + +versions_mqc = { + "id": "software_versions", + "section_name": "${workflow.manifest.name} Software Versions", + "section_href": "https://github.com/${workflow.manifest.name}", + "plot_type": "html", + "description": "are collected at run time from the software output.", + "data": _make_versions_html(versions_by_module), +} + +with open("software_versions.yml", "w") as f: + yaml.dump(versions_by_module, f, default_flow_style=False) +with open("software_versions_mqc.yml", "w") as f: + yaml.dump(versions_mqc, f, default_flow_style=False) + +with open("versions.yml", "w") as f: + yaml.dump(versions_this_module, f, default_flow_style=False) diff --git a/modules/nf-core/modules/fastqc/functions.nf b/modules/nf-core/modules/fastqc/functions.nf deleted file mode 100644 index da9da093..00000000 --- a/modules/nf-core/modules/fastqc/functions.nf +++ /dev/null @@ -1,68 +0,0 @@ -// -// Utility functions used in nf-core DSL2 module files -// - -// -// Extract name of software tool from process name using $task.process -// -def getSoftwareName(task_process) { - return task_process.tokenize(':')[-1].tokenize('_')[0].toLowerCase() -} - -// -// Function to initialise default values and to generate a Groovy Map of available options for nf-core modules -// -def initOptions(Map args) { - def Map options = [:] - options.args = args.args ?: '' - options.args2 = args.args2 ?: '' - options.args3 = args.args3 ?: '' - options.publish_by_meta = args.publish_by_meta ?: [] - options.publish_dir = args.publish_dir ?: '' - options.publish_files = args.publish_files - options.suffix = args.suffix ?: '' - return options -} - -// -// Tidy up and join elements of a list to return a path string -// -def getPathFromList(path_list) { - def paths = path_list.findAll { item -> !item?.trim().isEmpty() } // Remove empty entries - paths = paths.collect { it.trim().replaceAll("^[/]+|[/]+\$", "") } // Trim whitespace and trailing slashes - return paths.join('/') -} - -// -// Function to save/publish module results -// -def saveFiles(Map args) { - if (!args.filename.endsWith('.version.txt')) { - def ioptions = initOptions(args.options) - def path_list = [ ioptions.publish_dir ?: args.publish_dir ] - if (ioptions.publish_by_meta) { - def key_list = ioptions.publish_by_meta instanceof List ? ioptions.publish_by_meta : args.publish_by_meta - for (key in key_list) { - if (args.meta && key instanceof String) { - def path = key - if (args.meta.containsKey(key)) { - path = args.meta[key] instanceof Boolean ? "${key}_${args.meta[key]}".toString() : args.meta[key] - } - path = path instanceof String ? path : '' - path_list.add(path) - } - } - } - if (ioptions.publish_files instanceof Map) { - for (ext in ioptions.publish_files) { - if (args.filename.endsWith(ext.key)) { - def ext_list = path_list.collect() - ext_list.add(ext.value) - return "${getPathFromList(ext_list)}/$args.filename" - } - } - } else if (ioptions.publish_files == null) { - return "${getPathFromList(path_list)}/$args.filename" - } - } -} diff --git a/modules/nf-core/modules/fastqc/main.nf b/modules/nf-core/modules/fastqc/main.nf index 39c327b2..d250eca0 100644 --- a/modules/nf-core/modules/fastqc/main.nf +++ b/modules/nf-core/modules/fastqc/main.nf @@ -1,22 +1,11 @@ -// Import generic module functions -include { initOptions; saveFiles; getSoftwareName } from './functions' - -params.options = [:] -options = initOptions(params.options) - process FASTQC { tag "$meta.id" label 'process_medium' - publishDir "${params.outdir}", - mode: params.publish_dir_mode, - saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) } conda (params.enable_conda ? "bioconda::fastqc=0.11.9" : null) - if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) { - container "https://depot.galaxyproject.org/singularity/fastqc:0.11.9--0" - } else { - container "quay.io/biocontainers/fastqc:0.11.9--0" - } + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/fastqc:0.11.9--0' : + 'quay.io/biocontainers/fastqc:0.11.9--0' }" input: tuple val(meta), path(reads) @@ -24,24 +13,32 @@ process FASTQC { output: tuple val(meta), path("*.html"), emit: html tuple val(meta), path("*.zip") , emit: zip - path "*.version.txt" , emit: version + path "versions.yml" , emit: versions script: + def args = task.ext.args ?: '' // Add soft-links to original FastQs for consistent naming in pipeline - def software = getSoftwareName(task.process) - def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}" + def prefix = task.ext.prefix ?: "${meta.id}" if (meta.single_end) { """ [ ! -f ${prefix}.fastq.gz ] && ln -s $reads ${prefix}.fastq.gz - fastqc $options.args --threads $task.cpus ${prefix}.fastq.gz - fastqc --version | sed -e "s/FastQC v//g" > ${software}.version.txt + fastqc $args --threads $task.cpus ${prefix}.fastq.gz + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + fastqc: \$( fastqc --version | sed -e "s/FastQC v//g" ) + END_VERSIONS """ } else { """ [ ! -f ${prefix}_1.fastq.gz ] && ln -s ${reads[0]} ${prefix}_1.fastq.gz [ ! -f ${prefix}_2.fastq.gz ] && ln -s ${reads[1]} ${prefix}_2.fastq.gz - fastqc $options.args --threads $task.cpus ${prefix}_1.fastq.gz ${prefix}_2.fastq.gz - fastqc --version | sed -e "s/FastQC v//g" > ${software}.version.txt + fastqc $args --threads $task.cpus ${prefix}_1.fastq.gz ${prefix}_2.fastq.gz + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + fastqc: \$( fastqc --version | sed -e "s/FastQC v//g" ) + END_VERSIONS """ } } diff --git a/modules/nf-core/modules/fastqc/meta.yml b/modules/nf-core/modules/fastqc/meta.yml index 8eb9953d..b09553a3 100644 --- a/modules/nf-core/modules/fastqc/meta.yml +++ b/modules/nf-core/modules/fastqc/meta.yml @@ -15,6 +15,7 @@ tools: overrepresented sequences. homepage: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ documentation: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/ + licence: ['GPL-2.0-only'] input: - meta: type: map @@ -40,10 +41,10 @@ output: type: file description: FastQC report archive pattern: "*_{fastqc.zip}" - - version: + - versions: type: file - description: File containing software version - pattern: "*.{version.txt}" + description: File containing software versions + pattern: "versions.yml" authors: - "@drpatelh" - "@grst" diff --git a/modules/nf-core/modules/multiqc/functions.nf b/modules/nf-core/modules/multiqc/functions.nf deleted file mode 100644 index da9da093..00000000 --- a/modules/nf-core/modules/multiqc/functions.nf +++ /dev/null @@ -1,68 +0,0 @@ -// -// Utility functions used in nf-core DSL2 module files -// - -// -// Extract name of software tool from process name using $task.process -// -def getSoftwareName(task_process) { - return task_process.tokenize(':')[-1].tokenize('_')[0].toLowerCase() -} - -// -// Function to initialise default values and to generate a Groovy Map of available options for nf-core modules -// -def initOptions(Map args) { - def Map options = [:] - options.args = args.args ?: '' - options.args2 = args.args2 ?: '' - options.args3 = args.args3 ?: '' - options.publish_by_meta = args.publish_by_meta ?: [] - options.publish_dir = args.publish_dir ?: '' - options.publish_files = args.publish_files - options.suffix = args.suffix ?: '' - return options -} - -// -// Tidy up and join elements of a list to return a path string -// -def getPathFromList(path_list) { - def paths = path_list.findAll { item -> !item?.trim().isEmpty() } // Remove empty entries - paths = paths.collect { it.trim().replaceAll("^[/]+|[/]+\$", "") } // Trim whitespace and trailing slashes - return paths.join('/') -} - -// -// Function to save/publish module results -// -def saveFiles(Map args) { - if (!args.filename.endsWith('.version.txt')) { - def ioptions = initOptions(args.options) - def path_list = [ ioptions.publish_dir ?: args.publish_dir ] - if (ioptions.publish_by_meta) { - def key_list = ioptions.publish_by_meta instanceof List ? ioptions.publish_by_meta : args.publish_by_meta - for (key in key_list) { - if (args.meta && key instanceof String) { - def path = key - if (args.meta.containsKey(key)) { - path = args.meta[key] instanceof Boolean ? "${key}_${args.meta[key]}".toString() : args.meta[key] - } - path = path instanceof String ? path : '' - path_list.add(path) - } - } - } - if (ioptions.publish_files instanceof Map) { - for (ext in ioptions.publish_files) { - if (args.filename.endsWith(ext.key)) { - def ext_list = path_list.collect() - ext_list.add(ext.value) - return "${getPathFromList(ext_list)}/$args.filename" - } - } - } else if (ioptions.publish_files == null) { - return "${getPathFromList(path_list)}/$args.filename" - } - } -} diff --git a/modules/nf-core/modules/multiqc/main.nf b/modules/nf-core/modules/multiqc/main.nf index da780800..3dceb162 100644 --- a/modules/nf-core/modules/multiqc/main.nf +++ b/modules/nf-core/modules/multiqc/main.nf @@ -1,21 +1,10 @@ -// Import generic module functions -include { initOptions; saveFiles; getSoftwareName } from './functions' - -params.options = [:] -options = initOptions(params.options) - process MULTIQC { label 'process_medium' - publishDir "${params.outdir}", - mode: params.publish_dir_mode, - saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:[]) } - conda (params.enable_conda ? "bioconda::multiqc=1.10.1" : null) - if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) { - container "https://depot.galaxyproject.org/singularity/multiqc:1.10.1--py_0" - } else { - container "quay.io/biocontainers/multiqc:1.10.1--py_0" - } + conda (params.enable_conda ? 'bioconda::multiqc=1.11' : null) + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/multiqc:1.11--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.11--pyhdfd78af_0' }" input: path multiqc_files @@ -24,12 +13,16 @@ process MULTIQC { path "*multiqc_report.html", emit: report path "*_data" , emit: data path "*_plots" , optional:true, emit: plots - path "*.version.txt" , emit: version + path "versions.yml" , emit: versions script: - def software = getSoftwareName(task.process) + def args = task.ext.args ?: '' """ - multiqc -f $options.args . - multiqc --version | sed -e "s/multiqc, version //g" > ${software}.version.txt + multiqc -f $args . + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + multiqc: \$( multiqc --version | sed -e "s/multiqc, version //g" ) + END_VERSIONS """ } diff --git a/modules/nf-core/modules/multiqc/meta.yml b/modules/nf-core/modules/multiqc/meta.yml index 532a8bb1..63c75a45 100644 --- a/modules/nf-core/modules/multiqc/meta.yml +++ b/modules/nf-core/modules/multiqc/meta.yml @@ -11,6 +11,7 @@ tools: It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. homepage: https://multiqc.info/ documentation: https://multiqc.info/docs/ + licence: ['GPL-3.0-or-later'] input: - multiqc_files: type: file @@ -29,10 +30,10 @@ output: type: file description: Plots created by MultiQC pattern: "*_data" - - version: + - versions: type: file - description: File containing software version - pattern: "*.{version.txt}" + description: File containing software versions + pattern: "versions.yml" authors: - "@abhi18av" - "@bunop" diff --git a/nextflow.config b/nextflow.config index d925a1a1..37ccbf49 100644 --- a/nextflow.config +++ b/nextflow.config @@ -26,7 +26,6 @@ params { // Boilerplate options outdir = './results' tracedir = "${params.outdir}/pipeline_info" - publish_dir_mode = 'copy' email = null email_on_fail = null plaintext_email = false @@ -34,14 +33,12 @@ params { help = false validate_params = true show_hidden_params = false - schema_ignore_params = 'genomes,modules' + schema_ignore_params = 'genomes' enable_conda = false - singularity_pull_docker_container = false // Config options custom_config_version = 'master' custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}" - hostnames = [:] config_profile_description = null config_profile_contact = null config_profile_url = null @@ -58,9 +55,6 @@ params { // Load base.config by default for all pipelines includeConfig 'conf/base.config' -// Load modules.config for DSL2 module specific options -includeConfig 'conf/modules.config' - // Load nf-core custom profiles from different Institutions try { includeConfig "${params.custom_config_base}/nfcore_custom.config" @@ -68,13 +62,6 @@ try { System.err.println("WARNING: Could not load nf-core/config profiles: ${params.custom_config_base}/nfcore_custom.config") } -// Load igenomes.config if required -if (!params.igenomes_ignore) { - includeConfig 'conf/igenomes.config' -} else { - params.genomes = [:] -} - profiles { debug { process.beforeScript = 'echo $HOSTNAME' } conda { @@ -126,11 +113,22 @@ profiles { test_full { includeConfig 'conf/test_full.config' } } +// Load igenomes.config if required +if (!params.igenomes_ignore) { + includeConfig 'conf/igenomes.config' +} else { + params.genomes = [:] +} + // Export these variables to prevent local Python/R libraries from conflicting with those in the container +// The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container. +// See https://apeltzer.github.io/post/03-julia-lang-nextflow/ for details on that. Once we have a common agreement on where to keep Julia packages, this is adjustable. + env { PYTHONNOUSERSITE = 1 R_PROFILE_USER = "/.Rprofile" R_ENVIRON_USER = "/.Renviron" + JULIA_DEPOT_PATH = "/usr/local/share/julia" } // Capture exit codes from upstream processes when piping @@ -158,12 +156,15 @@ manifest { name = 'nf-core/bacass' author = 'Andreas Wilm, Alexander Peltzer' homePage = 'https://github.com/nf-core/bacass' - description = 'Simple bacterial assembly and annotation pipeline.' + description = 'Simple bacterial assembly and annotation' mainScript = 'main.nf' - nextflowVersion = '!>=21.04.0' - version = '1.1.1' + nextflowVersion = '!>=21.10.3' + version = '2.1.0dev' } +// Load modules.config for DSL2 module specific options +includeConfig 'conf/modules.config' + // Function to ensure that resource requirements don't go beyond // a maximum limit def check_max(obj, type) { diff --git a/nextflow_schema.json b/nextflow_schema.json index 240d7591..8c91df60 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/nf-core/bacass/master/nextflow_schema.json", "title": "nf-core/bacass pipeline parameters", - "description": "Simple bacterial assembly and annotation pipeline.", + "description": "Simple bacterial assembly and annotation", "type": "object", "definitions": { "input_output_options": { @@ -104,12 +104,6 @@ "help_text": "If you're running offline, Nextflow will not be able to fetch the institutional config files from the internet. If you don't need them, then this is not a problem. If you do need them, you should download the files from the repo and tell Nextflow where to find them with this parameter.", "fa_icon": "fas fa-users-cog" }, - "hostnames": { - "type": "string", - "description": "Institutional configs hostname.", - "hidden": true, - "fa_icon": "fas fa-users-cog" - }, "config_profile_name": { "type": "string", "description": "Institutional config name.", @@ -184,22 +178,6 @@ "fa_icon": "fas fa-question-circle", "hidden": true }, - "publish_dir_mode": { - "type": "string", - "default": "copy", - "description": "Method used to save pipeline results to output directory.", - "help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.", - "fa_icon": "fas fa-copy", - "enum": [ - "symlink", - "rellink", - "link", - "copy", - "copyNoFollow", - "move" - ], - "hidden": true - }, "email_on_fail": { "type": "string", "description": "Email address for completion summary, only when pipeline fails.", @@ -260,13 +238,6 @@ "description": "Run this workflow with Conda. You can also use '-profile conda' instead of providing this parameter.", "hidden": true, "fa_icon": "fas fa-bacon" - }, - "singularity_pull_docker_container": { - "type": "boolean", - "description": "Instead of directly downloading Singularity images for use with Singularity, force the workflow to pull and convert Docker containers instead.", - "hidden": true, - "fa_icon": "fas fa-toolbox", - "help_text": "This may be useful for example if you are unable to directly pull Singularity containers to run the pipeline due to http/https proxy issues." } } } diff --git a/subworkflows/local/input_check.nf b/subworkflows/local/input_check.nf index b664bc8c..cddcbb3c 100644 --- a/subworkflows/local/input_check.nf +++ b/subworkflows/local/input_check.nf @@ -2,9 +2,7 @@ // Check input samplesheet and get read channels // -params.options = [:] - -include { SAMPLESHEET_CHECK } from '../../modules/local/samplesheet_check' addParams( options: params.options ) +include { SAMPLESHEET_CHECK } from '../../modules/local/samplesheet_check' workflow INPUT_CHECK { take: @@ -12,12 +10,14 @@ workflow INPUT_CHECK { main: SAMPLESHEET_CHECK ( samplesheet ) + .csv .splitCsv ( header:true, sep:',' ) .map { create_fastq_channels(it) } .set { reads } emit: - reads // channel: [ val(meta), [ reads ] ] + reads // channel: [ val(meta), [ reads ] ] + versions = SAMPLESHEET_CHECK.out.versions // channel: [ versions.yml ] } // Function to get list of [ meta, [ fastq_1, fastq_2 ] ] diff --git a/workflows/bacass.nf b/workflows/bacass.nf index b00c86a5..60d70b47 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -32,18 +32,10 @@ ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multi ======================================================================================== */ -// Don't overwrite global params.modules, create a copy instead and use that within the main script. -def modules = params.modules.clone() - -// -// MODULE: Local to the pipeline -// -include { GET_SOFTWARE_VERSIONS } from '../modules/local/get_software_versions' addParams( options: [publish_files : ['tsv':'']] ) - // // SUBWORKFLOW: Consisting of a mix of local and nf-core/modules // -include { INPUT_CHECK } from '../subworkflows/local/input_check' addParams( options: [:] ) +include { INPUT_CHECK } from '../subworkflows/local/input_check' /* ======================================================================================== @@ -51,14 +43,12 @@ include { INPUT_CHECK } from '../subworkflows/local/input_check' addParams( opti ======================================================================================== */ -def multiqc_options = modules['multiqc'] -multiqc_options.args += params.multiqc_title ? Utils.joinModuleArgs(["--title \"$params.multiqc_title\""]) : '' - // // MODULE: Installed directly from nf-core/modules // -include { FASTQC } from '../modules/nf-core/modules/fastqc/main' addParams( options: modules['fastqc'] ) -include { MULTIQC } from '../modules/nf-core/modules/multiqc/main' addParams( options: multiqc_options ) +include { FASTQC } from '../modules/nf-core/modules/fastqc/main' +include { MULTIQC } from '../modules/nf-core/modules/multiqc/main' +include { CUSTOM_DUMPSOFTWAREVERSIONS } from '../modules/nf-core/modules/custom/dumpsoftwareversions/main' /* ======================================================================================== @@ -71,7 +61,7 @@ def multiqc_report = [] workflow BACASS { - ch_software_versions = Channel.empty() + ch_versions = Channel.empty() // // SUBWORKFLOW: Read in samplesheet, validate and stage input files @@ -79,6 +69,7 @@ workflow BACASS { INPUT_CHECK ( ch_input ) + ch_versions = ch_versions.mix(INPUT_CHECK.out.versions) // // MODULE: Run FastQC @@ -86,21 +77,10 @@ workflow BACASS { FASTQC ( INPUT_CHECK.out.reads ) - ch_software_versions = ch_software_versions.mix(FASTQC.out.version.first().ifEmpty(null)) + ch_versions = ch_versions.mix(FASTQC.out.versions.first()) - // - // MODULE: Pipeline reporting - // - ch_software_versions - .map { it -> if (it) [ it.baseName, it ] } - .groupTuple() - .map { it[1][0] } - .flatten() - .collect() - .set { ch_software_versions } - - GET_SOFTWARE_VERSIONS ( - ch_software_versions.map { it }.collect() + CUSTOM_DUMPSOFTWAREVERSIONS ( + ch_versions.unique().collectFile(name: 'collated_versions.yml') ) // @@ -113,14 +93,14 @@ workflow BACASS { ch_multiqc_files = ch_multiqc_files.mix(Channel.from(ch_multiqc_config)) ch_multiqc_files = ch_multiqc_files.mix(ch_multiqc_custom_config.collect().ifEmpty([])) ch_multiqc_files = ch_multiqc_files.mix(ch_workflow_summary.collectFile(name: 'workflow_summary_mqc.yaml')) - ch_multiqc_files = ch_multiqc_files.mix(GET_SOFTWARE_VERSIONS.out.yaml.collect()) + ch_multiqc_files = ch_multiqc_files.mix(CUSTOM_DUMPSOFTWAREVERSIONS.out.mqc_yml.collect()) ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.ifEmpty([])) MULTIQC ( ch_multiqc_files.collect() ) - multiqc_report = MULTIQC.out.report.toList() - ch_software_versions = ch_software_versions.mix(MULTIQC.out.version.ifEmpty(null)) + multiqc_report = MULTIQC.out.report.toList() + ch_versions = ch_versions.mix(MULTIQC.out.versions) } /* From 3b846baeb2fd123f64852221b7453d57b0bd1cd9 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Tue, 15 Mar 2022 20:58:18 +0000 Subject: [PATCH 02/21] Template update for nf-core/tools version 2.3 --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 - .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/awsfulltest.yml | 6 +- .github/workflows/awstest.yml | 6 +- .github/workflows/ci.yml | 4 +- .github/workflows/linting.yml | 28 +-- .gitpod.yml | 14 ++ .nf-core.yml | 1 + .yamllint.yml | 6 + README.md | 6 +- bin/check_samplesheet.py | 346 +++++++++++++++++--------- conf/base.config | 4 +- conf/igenomes.config | 80 +++--- conf/modules.config | 18 +- conf/test.config | 6 +- conf/test_full.config | 6 +- docs/usage.md | 21 +- lib/NfcoreSchema.groovy | 4 +- lib/Utils.groovy | 4 +- lib/WorkflowBacass.groovy | 4 +- main.nf | 24 +- nextflow.config | 18 +- nextflow_schema.json | 23 +- subworkflows/local/input_check.nf | 18 +- workflows/bacass.nf | 28 +-- 25 files changed, 419 insertions(+), 259 deletions(-) create mode 100644 .gitpod.yml create mode 100644 .nf-core.yml create mode 100644 .yamllint.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 083ca89e..5379c092 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,4 +1,3 @@ - name: Bug report description: Report something that is broken or incorrect labels: bug diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index dcccebd8..31d57c86 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -19,7 +19,7 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/baca - [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md) - [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. - [ ] Make sure your code lints (`nf-core lint`). -- [ ] Ensure the test suite passes (`nextflow run . -profile test,docker`). +- [ ] Ensure the test suite passes (`nextflow run . -profile test,docker` --outdir `). - [ ] Usage Documentation in `docs/usage.md` is updated. - [ ] Output Documentation in `docs/output.md` is updated. - [ ] `CHANGELOG.md` is updated. diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index 0b9d2504..7655d02a 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Launch workflow via tower - uses: nf-core/tower-action@v2 + uses: nf-core/tower-action@v3 # TODO nf-core: You can customise AWS full pipeline tests as required # Add full size test data (but still relatively small datasets for few samples) # on the `test_full.config` test runs with only one set of parameters @@ -31,4 +31,6 @@ jobs: "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-${{ github.sha }}" } profiles: test_full,aws_tower - pre_run_script: 'export NXF_VER=21.10.3' + nextflow_config: | + process.errorStrategy = 'retry' + process.maxRetries = 3 diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index 783627f6..eda5d710 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Launch workflow via tower - uses: nf-core/tower-action@v2 + uses: nf-core/tower-action@v3 with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} @@ -25,4 +25,6 @@ jobs: "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-test-${{ github.sha }}" } profiles: test,aws_tower - pre_run_script: 'export NXF_VER=21.10.3' + nextflow_config: | + process.errorStrategy = 'retry' + process.maxRetries = 3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92ffd991..ede529a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ env: jobs: test: - name: Run workflow tests + name: Run pipeline with test data # Only run on push if this is the nf-core dev branch (merged PRs) if: ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/bacass') }} runs-on: ubuntu-latest @@ -47,4 +47,4 @@ jobs: # For example: adding multiple test runs with different parameters # Remember that you can parallelise this by using strategy.matrix run: | - nextflow run ${GITHUB_WORKSPACE} -profile test,docker + nextflow run ${GITHUB_WORKSPACE} -profile test,docker --outdir ./results diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 3b448773..fda934c0 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -12,9 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: '10' + - uses: actions/setup-node@v2 - name: Install markdownlint run: npm install -g markdownlint-cli - name: Run Markdownlint @@ -51,9 +49,7 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: '10' + - uses: actions/setup-node@v2 - name: Install editorconfig-checker run: npm install -g editorconfig-checker @@ -64,14 +60,13 @@ jobs: YAML: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - name: Checkout + uses: actions/checkout@master + - name: 'Yamllint' + uses: karancode/yamllint-github-action@master with: - node-version: '10' - - name: Install yaml-lint - run: npm install -g yaml-lint - - name: Run yaml-lint - run: yamllint $(find ${GITHUB_WORKSPACE} -type f -name "*.yml" -o -name "*.yaml") + yamllint_file_or_dir: '.' + yamllint_config_filepath: '.yamllint.yml' # If the above check failed, post a comment on the PR explaining the failure - name: Post PR comment @@ -84,10 +79,11 @@ jobs: To keep the code consistent with lots of contributors, we run automated code consistency checks. To fix this CI test, please run: - * Install `yaml-lint` - * [Install `npm`](https://www.npmjs.com/get-npm) then [install `yaml-lint`](https://www.npmjs.com/package/yaml-lint) (`npm install -g yaml-lint`) + * Install `yamllint` + * Install `yamllint` following [this](https://yamllint.readthedocs.io/en/stable/quickstart.html#installing-yamllint) + instructions or alternative install it in your [conda environment](https://anaconda.org/conda-forge/yamllint) * Fix the markdown errors - * Run the test locally: `yamllint $(find . -type f -name "*.yml" -o -name "*.yaml")` + * Run the test locally: `yamllint $(find . -type f -name "*.yml" -o -name "*.yaml") -c ./.yamllint.yml` * Fix any reported errors in your YAML files Once you push these changes the test should pass, and you can hide this comment :+1: diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..b7d4cee1 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,14 @@ +image: nfcore/gitpod:latest + +vscode: + extensions: # based on nf-core.nf-core-extensionpack + - codezombiech.gitignore # Language support for .gitignore files + # - cssho.vscode-svgviewer # SVG viewer + - davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code + - eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed + - EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files + - Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar + - mechatroner.rainbow-csv # Highlight columns in csv files in different colors + # - nextflow.nextflow # Nextflow syntax highlighting + - oderwat.indent-rainbow # Highlight indentation level + - streetsidesoftware.code-spell-checker # Spelling checker for source code diff --git a/.nf-core.yml b/.nf-core.yml new file mode 100644 index 00000000..3805dc81 --- /dev/null +++ b/.nf-core.yml @@ -0,0 +1 @@ +repository_type: pipeline diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 00000000..d466deec --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,6 @@ +extends: default + +rules: + document-start: disable + line-length: disable + truthy: disable diff --git a/README.md b/README.md index a64019d0..f10e90d1 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,14 @@ On release, automated continuous integration tests run the pipeline on a full-si 3. Download the pipeline and test it on a minimal dataset with a single command: ```console - nextflow run nf-core/bacass -profile test,YOURPROFILE + nextflow run nf-core/bacass -profile test,YOURPROFILE --outdir ``` Note that some form of configuration will be needed so that Nextflow knows how to fetch the required software. This is usually done in the form of a config profile (`YOURPROFILE` in the example command above). You can chain multiple config profiles in a comma-separated string. > * The pipeline comes with config profiles called `docker`, `singularity`, `podman`, `shifter`, `charliecloud` and `conda` which instruct the pipeline to use the named tool for software management. For example, `-profile test,docker`. > * Please check [nf-core/configs](https://github.com/nf-core/configs#documentation) to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use `-profile ` in your command. This will enable either `docker` or `singularity` and set the appropriate execution settings for your local compute environment. - > * If you are using `singularity` and are persistently observing issues downloading Singularity images directly due to timeout or network issues, then you can use the `--singularity_pull_docker_container` parameter to pull and convert the Docker image instead. Alternatively, you can use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to download images first, before running the pipeline. Setting the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options enables you to store and re-use the images from a central location for future pipeline runs. + > * If you are using `singularity`, please use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to download images first, before running the pipeline. Setting the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options enables you to store and re-use the images from a central location for future pipeline runs. > * If you are using `conda`, it is highly recommended to use the [`NXF_CONDA_CACHEDIR` or `conda.cacheDir`](https://www.nextflow.io/docs/latest/conda.html) settings to store the environments in a central location for future pipeline runs. 4. Start running your own analysis! @@ -55,7 +55,7 @@ On release, automated continuous integration tests run the pipeline on a full-si ```console - nextflow run nf-core/bacass -profile --input samplesheet.csv --genome GRCh37 + nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile ``` ## Documentation diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py index cef3e4fe..5473b624 100755 --- a/bin/check_samplesheet.py +++ b/bin/check_samplesheet.py @@ -1,145 +1,249 @@ #!/usr/bin/env python -# TODO nf-core: Update the script to check the samplesheet -# This script is based on the example at: https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv -import os -import sys -import errno +"""Provide a command line tool to validate and transform tabular samplesheets.""" + + import argparse +import csv +import logging +import sys +from collections import Counter +from pathlib import Path -def parse_args(args=None): - Description = "Reformat nf-core/bacass samplesheet file and check its contents." - Epilog = "Example usage: python check_samplesheet.py " +logger = logging.getLogger() - parser = argparse.ArgumentParser(description=Description, epilog=Epilog) - parser.add_argument("FILE_IN", help="Input samplesheet file.") - parser.add_argument("FILE_OUT", help="Output file.") - return parser.parse_args(args) +class RowChecker: + """ + Define a service that can validate and transform each given row. -def make_dir(path): - if len(path) > 0: - try: - os.makedirs(path) - except OSError as exception: - if exception.errno != errno.EEXIST: - raise exception + Attributes: + modified (list): A list of dicts, where each dict corresponds to a previously + validated and transformed row. The order of rows is maintained. + """ -def print_error(error, context="Line", context_str=""): - error_str = "ERROR: Please check samplesheet -> {}".format(error) - if context != "" and context_str != "": - error_str = "ERROR: Please check samplesheet -> {}\n{}: '{}'".format( - error, context.strip(), context_str.strip() + VALID_FORMATS = ( + ".fq.gz", + ".fastq.gz", + ) + + def __init__( + self, + sample_col="sample", + first_col="fastq_1", + second_col="fastq_2", + single_col="single_end", + **kwargs, + ): + """ + Initialize the row checker with the expected column names. + + Args: + sample_col (str): The name of the column that contains the sample name + (default "sample"). + first_col (str): The name of the column that contains the first (or only) + FASTQ file path (default "fastq_1"). + second_col (str): The name of the column that contains the second (if any) + FASTQ file path (default "fastq_2"). + single_col (str): The name of the new column that will be inserted and + records whether the sample contains single- or paired-end sequencing + reads (default "single_end"). + + """ + super().__init__(**kwargs) + self._sample_col = sample_col + self._first_col = first_col + self._second_col = second_col + self._single_col = single_col + self._seen = set() + self.modified = [] + + def validate_and_transform(self, row): + """ + Perform all validations on the given row and insert the read pairing status. + + Args: + row (dict): A mapping from column headers (keys) to elements of that row + (values). + + """ + self._validate_sample(row) + self._validate_first(row) + self._validate_second(row) + self._validate_pair(row) + self._seen.add((row[self._sample_col], row[self._first_col])) + self.modified.append(row) + + def _validate_sample(self, row): + """Assert that the sample name exists and convert spaces to underscores.""" + assert len(row[self._sample_col]) > 0, "Sample input is required." + # Sanitize samples slightly. + row[self._sample_col] = row[self._sample_col].replace(" ", "_") + + def _validate_first(self, row): + """Assert that the first FASTQ entry is non-empty and has the right format.""" + assert len(row[self._first_col]) > 0, "At least the first FASTQ file is required." + self._validate_fastq_format(row[self._first_col]) + + def _validate_second(self, row): + """Assert that the second FASTQ entry has the right format if it exists.""" + if len(row[self._second_col]) > 0: + self._validate_fastq_format(row[self._second_col]) + + def _validate_pair(self, row): + """Assert that read pairs have the same file extension. Report pair status.""" + if row[self._first_col] and row[self._second_col]: + row[self._single_col] = False + assert ( + Path(row[self._first_col]).suffixes == Path(row[self._second_col]).suffixes + ), "FASTQ pairs must have the same file extensions." + else: + row[self._single_col] = True + + def _validate_fastq_format(self, filename): + """Assert that a given filename has one of the expected FASTQ extensions.""" + assert any(filename.endswith(extension) for extension in self.VALID_FORMATS), ( + f"The FASTQ file has an unrecognized extension: {filename}\n" + f"It should be one of: {', '.join(self.VALID_FORMATS)}" ) - print(error_str) - sys.exit(1) + def validate_unique_samples(self): + """ + Assert that the combination of sample name and FASTQ filename is unique. + + In addition to the validation, also rename the sample if more than one sample, + FASTQ file combination exists. + + """ + assert len(self._seen) == len(self.modified), "The pair of sample name and FASTQ must be unique." + if len({pair[0] for pair in self._seen}) < len(self._seen): + counts = Counter(pair[0] for pair in self._seen) + seen = Counter() + for row in self.modified: + sample = row[self._sample_col] + seen[sample] += 1 + if counts[sample] > 1: + row[self._sample_col] = f"{sample}_T{seen[sample]}" + + +def sniff_format(handle): + """ + Detect the tabular format. + + Args: + handle (text file): A handle to a `text file`_ object. The read position is + expected to be at the beginning (index 0). + + Returns: + csv.Dialect: The detected tabular format. + + .. _text file: + https://docs.python.org/3/glossary.html#term-text-file -# TODO nf-core: Update the check_samplesheet function -def check_samplesheet(file_in, file_out): """ - This function checks that the samplesheet follows the following structure: + peek = handle.read(2048) + sniffer = csv.Sniffer() + if not sniffer.has_header(peek): + logger.critical(f"The given sample sheet does not appear to contain a header.") + sys.exit(1) + dialect = sniffer.sniff(peek) + handle.seek(0) + return dialect - sample,fastq_1,fastq_2 - SAMPLE_PE,SAMPLE_PE_RUN1_1.fastq.gz,SAMPLE_PE_RUN1_2.fastq.gz - SAMPLE_PE,SAMPLE_PE_RUN2_1.fastq.gz,SAMPLE_PE_RUN2_2.fastq.gz - SAMPLE_SE,SAMPLE_SE_RUN1_1.fastq.gz, - For an example see: - https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv +def check_samplesheet(file_in, file_out): """ + Check that the tabular samplesheet has the structure expected by nf-core pipelines. - sample_mapping_dict = {} - with open(file_in, "r") as fin: + Validate the general shape of the table, expected columns, and each row. Also add + an additional column which records whether one or two FASTQ reads were found. - ## Check header - MIN_COLS = 2 - # TODO nf-core: Update the column names for the input samplesheet - HEADER = ["sample", "fastq_1", "fastq_2"] - header = [x.strip('"') for x in fin.readline().strip().split(",")] - if header[: len(HEADER)] != HEADER: - print("ERROR: Please check samplesheet header -> {} != {}".format(",".join(header), ",".join(HEADER))) - sys.exit(1) + Args: + file_in (pathlib.Path): The given tabular samplesheet. The format can be either + CSV, TSV, or any other format automatically recognized by ``csv.Sniffer``. + file_out (pathlib.Path): Where the validated and transformed samplesheet should + be created; always in CSV format. - ## Check sample entries - for line in fin: - lspl = [x.strip().strip('"') for x in line.strip().split(",")] - - # Check valid number of columns per row - if len(lspl) < len(HEADER): - print_error( - "Invalid number of columns (minimum = {})!".format(len(HEADER)), - "Line", - line, - ) - num_cols = len([x for x in lspl if x]) - if num_cols < MIN_COLS: - print_error( - "Invalid number of populated columns (minimum = {})!".format(MIN_COLS), - "Line", - line, - ) - - ## Check sample name entries - sample, fastq_1, fastq_2 = lspl[: len(HEADER)] - sample = sample.replace(" ", "_") - if not sample: - print_error("Sample entry has not been specified!", "Line", line) - - ## Check FastQ file extension - for fastq in [fastq_1, fastq_2]: - if fastq: - if fastq.find(" ") != -1: - print_error("FastQ file contains spaces!", "Line", line) - if not fastq.endswith(".fastq.gz") and not fastq.endswith(".fq.gz"): - print_error( - "FastQ file does not have extension '.fastq.gz' or '.fq.gz'!", - "Line", - line, - ) - - ## Auto-detect paired-end/single-end - sample_info = [] ## [single_end, fastq_1, fastq_2] - if sample and fastq_1 and fastq_2: ## Paired-end short reads - sample_info = ["0", fastq_1, fastq_2] - elif sample and fastq_1 and not fastq_2: ## Single-end short reads - sample_info = ["1", fastq_1, fastq_2] - else: - print_error("Invalid combination of columns provided!", "Line", line) - - ## Create sample mapping dictionary = { sample: [ single_end, fastq_1, fastq_2 ] } - if sample not in sample_mapping_dict: - sample_mapping_dict[sample] = [sample_info] - else: - if sample_info in sample_mapping_dict[sample]: - print_error("Samplesheet contains duplicate rows!", "Line", line) - else: - sample_mapping_dict[sample].append(sample_info) - - ## Write validated samplesheet with appropriate columns - if len(sample_mapping_dict) > 0: - out_dir = os.path.dirname(file_out) - make_dir(out_dir) - with open(file_out, "w") as fout: - fout.write(",".join(["sample", "single_end", "fastq_1", "fastq_2"]) + "\n") - for sample in sorted(sample_mapping_dict.keys()): - - ## Check that multiple runs of the same sample are of the same datatype - if not all(x[0] == sample_mapping_dict[sample][0][0] for x in sample_mapping_dict[sample]): - print_error("Multiple runs of a sample must be of the same datatype!", "Sample: {}".format(sample)) - - for idx, val in enumerate(sample_mapping_dict[sample]): - fout.write(",".join(["{}_T{}".format(sample, idx + 1)] + val) + "\n") - else: - print_error("No entries to process!", "Samplesheet: {}".format(file_in)) - - -def main(args=None): - args = parse_args(args) - check_samplesheet(args.FILE_IN, args.FILE_OUT) + Example: + This function checks that the samplesheet follows the following structure, + see also the `viral recon samplesheet`_:: + + sample,fastq_1,fastq_2 + SAMPLE_PE,SAMPLE_PE_RUN1_1.fastq.gz,SAMPLE_PE_RUN1_2.fastq.gz + SAMPLE_PE,SAMPLE_PE_RUN2_1.fastq.gz,SAMPLE_PE_RUN2_2.fastq.gz + SAMPLE_SE,SAMPLE_SE_RUN1_1.fastq.gz, + + .. _viral recon samplesheet: + https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv + + """ + required_columns = {"sample", "fastq_1", "fastq_2"} + # See https://docs.python.org/3.9/library/csv.html#id3 to read up on `newline=""`. + with file_in.open(newline="") as in_handle: + reader = csv.DictReader(in_handle, dialect=sniff_format(in_handle)) + # Validate the existence of the expected header columns. + if not required_columns.issubset(reader.fieldnames): + logger.critical(f"The sample sheet **must** contain the column headers: {', '.join(required_columns)}.") + sys.exit(1) + # Validate each row. + checker = RowChecker() + for i, row in enumerate(reader): + try: + checker.validate_and_transform(row) + except AssertionError as error: + logger.critical(f"{str(error)} On line {i + 2}.") + sys.exit(1) + checker.validate_unique_samples() + header = list(reader.fieldnames) + header.insert(1, "single_end") + # See https://docs.python.org/3.9/library/csv.html#id3 to read up on `newline=""`. + with file_out.open(mode="w", newline="") as out_handle: + writer = csv.DictWriter(out_handle, header, delimiter=",") + writer.writeheader() + for row in checker.modified: + writer.writerow(row) + + +def parse_args(argv=None): + """Define and immediately parse command line arguments.""" + parser = argparse.ArgumentParser( + description="Validate and transform a tabular samplesheet.", + epilog="Example: python check_samplesheet.py samplesheet.csv samplesheet.valid.csv", + ) + parser.add_argument( + "file_in", + metavar="FILE_IN", + type=Path, + help="Tabular input samplesheet in CSV or TSV format.", + ) + parser.add_argument( + "file_out", + metavar="FILE_OUT", + type=Path, + help="Transformed output samplesheet in CSV format.", + ) + parser.add_argument( + "-l", + "--log-level", + help="The desired log level (default WARNING).", + choices=("CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG"), + default="WARNING", + ) + return parser.parse_args(argv) + + +def main(argv=None): + """Coordinate argument parsing and program execution.""" + args = parse_args(argv) + logging.basicConfig(level=args.log_level, format="[%(levelname)s] %(message)s") + if not args.file_in.is_file(): + logger.error(f"The given input file {args.file_in} was not found!") + sys.exit(2) + args.file_out.parent.mkdir(parents=True, exist_ok=True) + check_samplesheet(args.file_in, args.file_out) if __name__ == "__main__": diff --git a/conf/base.config b/conf/base.config index dd6a7ad7..fb20f020 100644 --- a/conf/base.config +++ b/conf/base.config @@ -1,7 +1,7 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ nf-core/bacass Nextflow base config file -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A 'blank slate' config file, appropriate for general use on most high performance compute environments. Assumes that all software is installed and available on the PATH. Runs in `local` mode - all jobs will be run on the logged in environment. diff --git a/conf/igenomes.config b/conf/igenomes.config index 855948de..7a1b3ac6 100644 --- a/conf/igenomes.config +++ b/conf/igenomes.config @@ -1,7 +1,7 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Nextflow config file for iGenomes paths -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Defines reference genomes using iGenome paths. Can be used by any config that customises the base path using: $params.igenomes_base / --igenomes_base @@ -13,7 +13,7 @@ params { genomes { 'GRCh37' { fasta = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/BismarkIndex/" @@ -26,7 +26,7 @@ params { } 'GRCh38' { fasta = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/BismarkIndex/" @@ -38,7 +38,7 @@ params { } 'GRCm38' { fasta = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/BismarkIndex/" @@ -51,7 +51,7 @@ params { } 'TAIR10' { fasta = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/BismarkIndex/" @@ -62,7 +62,7 @@ params { } 'EB2' { fasta = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/BismarkIndex/" @@ -72,7 +72,7 @@ params { } 'UMD3.1' { fasta = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/BismarkIndex/" @@ -83,7 +83,7 @@ params { } 'WBcel235' { fasta = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/BismarkIndex/" @@ -94,7 +94,7 @@ params { } 'CanFam3.1' { fasta = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/BismarkIndex/" @@ -105,7 +105,7 @@ params { } 'GRCz10' { fasta = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/BismarkIndex/" @@ -115,7 +115,7 @@ params { } 'BDGP6' { fasta = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/BismarkIndex/" @@ -126,7 +126,7 @@ params { } 'EquCab2' { fasta = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/BismarkIndex/" @@ -137,7 +137,7 @@ params { } 'EB1' { fasta = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/BismarkIndex/" @@ -147,7 +147,7 @@ params { } 'Galgal4' { fasta = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/BismarkIndex/" @@ -157,7 +157,7 @@ params { } 'Gm01' { fasta = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/BismarkIndex/" @@ -167,7 +167,7 @@ params { } 'Mmul_1' { fasta = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/BismarkIndex/" @@ -178,7 +178,7 @@ params { } 'IRGSP-1.0' { fasta = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/BismarkIndex/" @@ -188,7 +188,7 @@ params { } 'CHIMP2.1.4' { fasta = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/BismarkIndex/" @@ -199,7 +199,7 @@ params { } 'Rnor_5.0' { fasta = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/BismarkIndex/" @@ -209,7 +209,7 @@ params { } 'Rnor_6.0' { fasta = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/BismarkIndex/" @@ -219,7 +219,7 @@ params { } 'R64-1-1' { fasta = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/BismarkIndex/" @@ -230,7 +230,7 @@ params { } 'EF2' { fasta = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/BismarkIndex/" @@ -242,7 +242,7 @@ params { } 'Sbi1' { fasta = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/BismarkIndex/" @@ -252,7 +252,7 @@ params { } 'Sscrofa10.2' { fasta = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/BismarkIndex/" @@ -263,7 +263,7 @@ params { } 'AGPv3' { fasta = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/BismarkIndex/" @@ -273,7 +273,7 @@ params { } 'hg38' { fasta = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/BismarkIndex/" @@ -285,7 +285,7 @@ params { } 'hg19' { fasta = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/BismarkIndex/" @@ -298,7 +298,7 @@ params { } 'mm10' { fasta = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/BismarkIndex/" @@ -311,7 +311,7 @@ params { } 'bosTau8' { fasta = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/BismarkIndex/" @@ -321,7 +321,7 @@ params { } 'ce10' { fasta = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/BismarkIndex/" @@ -333,7 +333,7 @@ params { } 'canFam3' { fasta = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/BismarkIndex/" @@ -344,7 +344,7 @@ params { } 'danRer10' { fasta = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/BismarkIndex/" @@ -355,7 +355,7 @@ params { } 'dm6' { fasta = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/BismarkIndex/" @@ -366,7 +366,7 @@ params { } 'equCab2' { fasta = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/BismarkIndex/" @@ -377,7 +377,7 @@ params { } 'galGal4' { fasta = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/BismarkIndex/" @@ -388,7 +388,7 @@ params { } 'panTro4' { fasta = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/BismarkIndex/" @@ -399,7 +399,7 @@ params { } 'rn6' { fasta = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/BismarkIndex/" @@ -409,7 +409,7 @@ params { } 'sacCer3' { fasta = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/BismarkIndex/" @@ -419,7 +419,7 @@ params { } 'susScr3' { fasta = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/BWAIndex/genome.fa" + bwa = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/BWAIndex/version0.6.0/" bowtie2 = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/Bowtie2Index/" star = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/STARIndex/" bismark = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/BismarkIndex/" diff --git a/conf/modules.config b/conf/modules.config index a0506a4d..da58a5d8 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -1,12 +1,12 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Config file for defining DSL2 per module options and publishing paths -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Available keys to override module options: - ext.args = Additional arguments appended to command in module. - ext.args2 = Second set of arguments appended to command in module (multi-tool modules). - ext.args3 = Third set of arguments appended to command in module (multi-tool modules). - ext.prefix = File name prefix for output files. + ext.args = Additional arguments appended to command in module. + ext.args2 = Second set of arguments appended to command in module (multi-tool modules). + ext.args3 = Third set of arguments appended to command in module (multi-tool modules). + ext.prefix = File name prefix for output files. ---------------------------------------------------------------------------------------- */ @@ -14,14 +14,14 @@ process { publishDir = [ path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }, - mode: 'copy', + mode: params.publish_dir_mode, saveAs: { filename -> filename.equals('versions.yml') ? null : filename } ] withName: SAMPLESHEET_CHECK { publishDir = [ path: { "${params.outdir}/pipeline_info" }, - mode: 'copy', + mode: params.publish_dir_mode, saveAs: { filename -> filename.equals('versions.yml') ? null : filename } ] } @@ -33,7 +33,7 @@ process { withName: CUSTOM_DUMPSOFTWAREVERSIONS { publishDir = [ path: { "${params.outdir}/pipeline_info" }, - mode: 'copy', + mode: params.publish_dir_mode, pattern: '*_versions.yml' ] } diff --git a/conf/test.config b/conf/test.config index 8401e6bc..c0d23c95 100644 --- a/conf/test.config +++ b/conf/test.config @@ -1,11 +1,11 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Nextflow config file for running minimal tests -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Defines input files and everything required to run a fast and simple pipeline test. Use as follows: - nextflow run nf-core/bacass -profile test, + nextflow run nf-core/bacass -profile test, --outdir ---------------------------------------------------------------------------------------- */ diff --git a/conf/test_full.config b/conf/test_full.config index 1bac8cd3..d35a88b9 100644 --- a/conf/test_full.config +++ b/conf/test_full.config @@ -1,11 +1,11 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Nextflow config file for running full-size tests -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Defines input files and everything required to run a full size pipeline test. Use as follows: - nextflow run nf-core/bacass -profile test_full, + nextflow run nf-core/bacass -profile test_full, --outdir ---------------------------------------------------------------------------------------- */ diff --git a/docs/usage.md b/docs/usage.md index b116d5e0..e82d37aa 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -57,7 +57,7 @@ An [example samplesheet](../assets/samplesheet.csv) has been provided with the p The typical command for running the pipeline is as follows: ```console -nextflow run nf-core/bacass --input samplesheet.csv --genome GRCh37 -profile docker +nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile docker ``` This will launch the pipeline with the `docker` configuration profile. See below for more information about profiles. @@ -141,11 +141,11 @@ Whilst the default requirements set within the pipeline will hopefully work for For example, if the nf-core/rnaseq pipeline is failing after multiple re-submissions of the `STAR_ALIGN` process due to an exit code of `137` this would indicate that there is an out of memory issue: ```console -[62/149eb0] NOTE: Process `RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)` terminated with an error exit status (137) -- Execution is retried (1) -Error executing process > 'RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)' +[62/149eb0] NOTE: Process `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)` terminated with an error exit status (137) -- Execution is retried (1) +Error executing process > 'NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)' Caused by: - Process `RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)` terminated with an error exit status (137) + Process `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)` terminated with an error exit status (137) Command executed: STAR \ @@ -169,17 +169,24 @@ Work dir: Tip: you can replicate the issue by changing to the process work dir and entering the command `bash .command.run` ``` -To bypass this error you would need to find exactly which resources are set by the `STAR_ALIGN` process. The quickest way is to search for `process STAR_ALIGN` in the [nf-core/rnaseq Github repo](https://github.com/nf-core/rnaseq/search?q=process+STAR_ALIGN). We have standardised the structure of Nextflow DSL2 pipelines such that all module files will be present in the `modules/` directory and so based on the search results the file we want is `modules/nf-core/software/star/align/main.nf`. If you click on the link to that file you will notice that there is a `label` directive at the top of the module that is set to [`label process_high`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/modules/nf-core/software/star/align/main.nf#L9). The [Nextflow `label`](https://www.nextflow.io/docs/latest/process.html#label) directive allows us to organise workflow processes in separate groups which can be referenced in a configuration file to select and configure subset of processes having similar computing requirements. The default values for the `process_high` label are set in the pipeline's [`base.config`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/base.config#L33-L37) which in this case is defined as 72GB. Providing you haven't set any other standard nf-core parameters to __cap__ the [maximum resources](https://nf-co.re/usage/configuration#max-resources) used by the pipeline then we can try and bypass the `STAR_ALIGN` process failure by creating a custom config file that sets at least 72GB of memory, in this case increased to 100GB. The custom config below can then be provided to the pipeline via the [`-c`](#-c) parameter as highlighted in previous sections. +To bypass this error you would need to find exactly which resources are set by the `STAR_ALIGN` process. The quickest way is to search for `process STAR_ALIGN` in the [nf-core/rnaseq Github repo](https://github.com/nf-core/rnaseq/search?q=process+STAR_ALIGN). +We have standardised the structure of Nextflow DSL2 pipelines such that all module files will be present in the `modules/` directory and so, based on the search results, the file we want is `modules/nf-core/software/star/align/main.nf`. +If you click on the link to that file you will notice that there is a `label` directive at the top of the module that is set to [`label process_high`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/modules/nf-core/software/star/align/main.nf#L9). +The [Nextflow `label`](https://www.nextflow.io/docs/latest/process.html#label) directive allows us to organise workflow processes in separate groups which can be referenced in a configuration file to select and configure subset of processes having similar computing requirements. +The default values for the `process_high` label are set in the pipeline's [`base.config`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/base.config#L33-L37) which in this case is defined as 72GB. +Providing you haven't set any other standard nf-core parameters to **cap** the [maximum resources](https://nf-co.re/usage/configuration#max-resources) used by the pipeline then we can try and bypass the `STAR_ALIGN` process failure by creating a custom config file that sets at least 72GB of memory, in this case increased to 100GB. +The custom config below can then be provided to the pipeline via the [`-c`](#-c) parameter as highlighted in previous sections. ```nextflow process { - withName: STAR_ALIGN { + withName: 'NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN' { memory = 100.GB } } ``` -> **NB:** We specify just the process name i.e. `STAR_ALIGN` in the config file and not the full task name string that is printed to screen in the error message or on the terminal whilst the pipeline is running i.e. `RNASEQ:ALIGN_STAR:STAR_ALIGN`. You may get a warning suggesting that the process selector isn't recognised but you can ignore that if the process name has been specified correctly. This is something that needs to be fixed upstream in core Nextflow. +> **NB:** We specify the full process name i.e. `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN` in the config file because this takes priority over the short name (`STAR_ALIGN`) and allows existing configuration using the full process name to be correctly overridden. +> If you get a warning suggesting that the process selector isn't recognised check that the process name has been specified correctly. ### Updating containers diff --git a/lib/NfcoreSchema.groovy b/lib/NfcoreSchema.groovy index 40ab65f2..b3d092f8 100755 --- a/lib/NfcoreSchema.groovy +++ b/lib/NfcoreSchema.groovy @@ -27,7 +27,7 @@ class NfcoreSchema { /* groovylint-disable-next-line UnusedPrivateMethodParameter */ public static void validateParameters(workflow, params, log, schema_filename='nextflow_schema.json') { def has_error = false - //=====================================================================// + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// // Check for nextflow core params and unexpected params def json = new File(getSchemaPath(workflow, schema_filename=schema_filename)).text def Map schemaParams = (Map) new JsonSlurper().parseText(json).get('definitions') @@ -135,7 +135,7 @@ class NfcoreSchema { } } - //=====================================================================// + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// // Validate parameters against the schema InputStream input_stream = new File(getSchemaPath(workflow, schema_filename=schema_filename)).newInputStream() JSONObject raw_schema = new JSONObject(new JSONTokener(input_stream)) diff --git a/lib/Utils.groovy b/lib/Utils.groovy index 1b88aec0..28567bd7 100755 --- a/lib/Utils.groovy +++ b/lib/Utils.groovy @@ -29,12 +29,12 @@ class Utils { conda_check_failed |= !(channels.indexOf('bioconda') < channels.indexOf('defaults')) if (conda_check_failed) { - log.warn "=============================================================================\n" + + log.warn "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" + " There is a problem with your Conda configuration!\n\n" + " You will need to set-up the conda-forge and bioconda channels correctly.\n" + " Please refer to https://bioconda.github.io/user/install.html#set-up-channels\n" + " NB: The order of the channels matters!\n" + - "===================================================================================" + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" } } } diff --git a/lib/WorkflowBacass.groovy b/lib/WorkflowBacass.groovy index 94f7e96d..aa100683 100755 --- a/lib/WorkflowBacass.groovy +++ b/lib/WorkflowBacass.groovy @@ -48,11 +48,11 @@ class WorkflowBacass { // private static void genomeExistsError(params, log) { if (params.genomes && params.genome && !params.genomes.containsKey(params.genome)) { - log.error "=============================================================================\n" + + log.error "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" + " Genome '${params.genome}' not found in any config files provided to the pipeline.\n" + " Currently, the available genome keys are:\n" + " ${params.genomes.keySet().join(", ")}\n" + - "===================================================================================" + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" System.exit(1) } } diff --git a/main.nf b/main.nf index 09ddaab9..6b776dd9 100644 --- a/main.nf +++ b/main.nf @@ -1,8 +1,8 @@ #!/usr/bin/env nextflow /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ nf-core/bacass -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Github : https://github.com/nf-core/bacass Website: https://nf-co.re/bacass Slack : https://nfcore.slack.com/channels/bacass @@ -12,25 +12,25 @@ nextflow.enable.dsl = 2 /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GENOME PARAMETER VALUES -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ params.fasta = WorkflowMain.getGenomeAttribute(params, 'fasta') /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ VALIDATE & PRINT PARAMETER SUMMARY -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ WorkflowMain.initialise(workflow, params, log) /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ NAMED WORKFLOW FOR PIPELINE -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ include { BACASS } from './workflows/bacass' @@ -43,9 +43,9 @@ workflow NFCORE_BACASS { } /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ RUN ALL WORKFLOWS -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ // @@ -57,7 +57,7 @@ workflow { } /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THE END -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ diff --git a/nextflow.config b/nextflow.config index 37ccbf49..dccfc2ba 100644 --- a/nextflow.config +++ b/nextflow.config @@ -1,7 +1,7 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ nf-core/bacass Nextflow config file -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Default config options for all compute environments ---------------------------------------------------------------------------------------- */ @@ -24,8 +24,9 @@ params { max_multiqc_email_size = '25.MB' // Boilerplate options - outdir = './results' + outdir = null tracedir = "${params.outdir}/pipeline_info" + publish_dir_mode = 'copy' email = null email_on_fail = null plaintext_email = false @@ -62,6 +63,15 @@ try { System.err.println("WARNING: Could not load nf-core/config profiles: ${params.custom_config_base}/nfcore_custom.config") } +// Load nf-core/bacass custom profiles from different institutions. +// Warning: Uncomment only if a pipeline-specific instititutional config already exists on nf-core/configs! +// try { +// includeConfig "${params.custom_config_base}/pipeline/bacass.config" +// } catch (Exception e) { +// System.err.println("WARNING: Could not load nf-core/config/bacass profiles: ${params.custom_config_base}/pipeline/bacass.config") +// } + + profiles { debug { process.beforeScript = 'echo $HOSTNAME' } conda { @@ -121,7 +131,7 @@ if (!params.igenomes_ignore) { } // Export these variables to prevent local Python/R libraries from conflicting with those in the container -// The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container. +// The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container. // See https://apeltzer.github.io/post/03-julia-lang-nextflow/ for details on that. Once we have a common agreement on where to keep Julia packages, this is adjustable. env { diff --git a/nextflow_schema.json b/nextflow_schema.json index 8c91df60..0d4d7f78 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -11,7 +11,8 @@ "fa_icon": "fas fa-terminal", "description": "Define where the pipeline should find input data and save output data.", "required": [ - "input" + "input", + "outdir" ], "properties": { "input": { @@ -26,8 +27,8 @@ }, "outdir": { "type": "string", - "description": "Path to the output directory where the results will be saved.", - "default": "./results", + "format": "directory-path", + "description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.", "fa_icon": "fas fa-folder-open" }, "email": { @@ -178,6 +179,22 @@ "fa_icon": "fas fa-question-circle", "hidden": true }, + "publish_dir_mode": { + "type": "string", + "default": "copy", + "description": "Method used to save pipeline results to output directory.", + "help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.", + "fa_icon": "fas fa-copy", + "enum": [ + "symlink", + "rellink", + "link", + "copy", + "copyNoFollow", + "move" + ], + "hidden": true + }, "email_on_fail": { "type": "string", "description": "Email address for completion summary, only when pipeline fails.", diff --git a/subworkflows/local/input_check.nf b/subworkflows/local/input_check.nf index cddcbb3c..0aecf87f 100644 --- a/subworkflows/local/input_check.nf +++ b/subworkflows/local/input_check.nf @@ -12,7 +12,7 @@ workflow INPUT_CHECK { SAMPLESHEET_CHECK ( samplesheet ) .csv .splitCsv ( header:true, sep:',' ) - .map { create_fastq_channels(it) } + .map { create_fastq_channel(it) } .set { reads } emit: @@ -21,22 +21,24 @@ workflow INPUT_CHECK { } // Function to get list of [ meta, [ fastq_1, fastq_2 ] ] -def create_fastq_channels(LinkedHashMap row) { +def create_fastq_channel(LinkedHashMap row) { + // create meta map def meta = [:] - meta.id = row.sample - meta.single_end = row.single_end.toBoolean() + meta.id = row.sample + meta.single_end = row.single_end.toBoolean() - def array = [] + // add path(s) of the fastq file(s) to the meta map + def fastq_meta = [] if (!file(row.fastq_1).exists()) { exit 1, "ERROR: Please check input samplesheet -> Read 1 FastQ file does not exist!\n${row.fastq_1}" } if (meta.single_end) { - array = [ meta, [ file(row.fastq_1) ] ] + fastq_meta = [ meta, [ file(row.fastq_1) ] ] } else { if (!file(row.fastq_2).exists()) { exit 1, "ERROR: Please check input samplesheet -> Read 2 FastQ file does not exist!\n${row.fastq_2}" } - array = [ meta, [ file(row.fastq_1), file(row.fastq_2) ] ] + fastq_meta = [ meta, [ file(row.fastq_1), file(row.fastq_2) ] ] } - return array + return fastq_meta } diff --git a/workflows/bacass.nf b/workflows/bacass.nf index 60d70b47..47913e2a 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -1,7 +1,7 @@ /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ VALIDATE INPUTS -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ def summary_params = NfcoreSchema.paramsSummaryMap(workflow, params) @@ -18,18 +18,18 @@ for (param in checkPathParamList) { if (param) { file(param, checkIfExists: true if (params.input) { ch_input = file(params.input) } else { exit 1, 'Input samplesheet not specified!' } /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CONFIG FILES -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ ch_multiqc_config = file("$projectDir/assets/multiqc_config.yaml", checkIfExists: true) ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config) : Channel.empty() /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IMPORT LOCAL MODULES/SUBWORKFLOWS -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ // @@ -38,9 +38,9 @@ ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multi include { INPUT_CHECK } from '../subworkflows/local/input_check' /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IMPORT NF-CORE MODULES/SUBWORKFLOWS -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ // @@ -51,9 +51,9 @@ include { MULTIQC } from '../modules/nf-core/modules/multiqc include { CUSTOM_DUMPSOFTWAREVERSIONS } from '../modules/nf-core/modules/custom/dumpsoftwareversions/main' /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ RUN MAIN WORKFLOW -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ // Info required for completion email and summary @@ -104,9 +104,9 @@ workflow BACASS { } /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ COMPLETION EMAIL AND SUMMARY -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ workflow.onComplete { @@ -117,7 +117,7 @@ workflow.onComplete { } /* -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THE END -======================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ From 3e5ae0db5e622abb9b5a6d8149144416102b4fd4 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Wed, 23 Mar 2022 13:47:26 +0000 Subject: [PATCH 03/21] Template update for nf-core/tools version 2.3.1 --- .editorconfig | 5 +- .github/CONTRIBUTING.md | 15 +- .github/ISSUE_TEMPLATE/bug_report.yml | 1 - .github/PULL_REQUEST_TEMPLATE.md | 6 +- .github/workflows/awsfulltest.yml | 1 - .github/workflows/awstest.yml | 2 +- .github/workflows/branch.yml | 5 +- .github/workflows/ci.yml | 12 +- .github/workflows/linting.yml | 85 ++--------- .github/workflows/linting_comment.yml | 3 +- .gitpod.yml | 16 +- .markdownlint.yml | 14 -- .prettierrc.yml | 1 + .yamllint.yml | 6 - CHANGELOG.md | 2 + CITATIONS.md | 27 ++-- README.md | 31 ++-- assets/email_template.html | 142 ++++++++++++------ assets/multiqc_config.yaml | 11 -- assets/multiqc_config.yml | 11 ++ assets/schema_input.json | 5 +- docs/README.md | 8 +- docs/output.md | 28 ++-- docs/usage.md | 109 +++++++------- modules.json | 8 +- .../custom/dumpsoftwareversions/main.nf | 3 + .../custom/dumpsoftwareversions/meta.yml | 2 +- modules/nf-core/modules/fastqc/main.nf | 3 + modules/nf-core/modules/fastqc/meta.yml | 90 +++++------ modules/nf-core/modules/multiqc/main.nf | 9 +- modules/nf-core/modules/multiqc/meta.yml | 66 ++++---- nextflow_schema.json | 14 +- workflows/bacass.nf | 2 +- 33 files changed, 361 insertions(+), 382 deletions(-) delete mode 100644 .markdownlint.yml create mode 100644 .prettierrc.yml delete mode 100644 .yamllint.yml delete mode 100644 assets/multiqc_config.yaml create mode 100644 assets/multiqc_config.yml diff --git a/.editorconfig b/.editorconfig index 95549501..b6b31907 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,12 +8,9 @@ trim_trailing_whitespace = true indent_size = 4 indent_style = space -[*.{yml,yaml}] +[*.{md,yml,yaml,html,css,scss,js}] indent_size = 2 -[*.json] -insert_final_newline = unset - # These files are edited and tested upstream in nf-core/modules [/modules/nf-core/**] charset = unset diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 3a3bca46..60f7799e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -15,8 +15,7 @@ Contributions to the code are even more welcome ;) If you'd like to write some code for nf-core/bacass, the standard workflow is as follows: -1. Check that there isn't already an issue about your idea in the [nf-core/bacass issues](https://github.com/nf-core/bacass/issues) to avoid duplicating work - * If there isn't one already, please create one so that others know you're working on this +1. Check that there isn't already an issue about your idea in the [nf-core/bacass issues](https://github.com/nf-core/bacass/issues) to avoid duplicating work. If there isn't one already, please create one so that others know you're working on this 2. [Fork](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) the [nf-core/bacass repository](https://github.com/nf-core/bacass) to your GitHub account 3. Make the necessary changes / additions within your forked repository following [Pipeline conventions](#pipeline-contribution-conventions) 4. Use `nf-core schema build` and add any new parameters to the pipeline JSON schema (requires [nf-core tools](https://github.com/nf-core/tools) >= 1.10). @@ -49,9 +48,9 @@ These tests are run both with the latest available version of `Nextflow` and als :warning: Only in the unlikely and regretful event of a release happening with a bug. -* On your own fork, make a new branch `patch` based on `upstream/master`. -* Fix the bug, and bump version (X.Y.Z+1). -* A PR should be made on `master` from patch to directly this particular bug. +- On your own fork, make a new branch `patch` based on `upstream/master`. +- Fix the bug, and bump version (X.Y.Z+1). +- A PR should be made on `master` from patch to directly this particular bug. ## Getting help @@ -73,7 +72,7 @@ If you wish to contribute a new step, please use the following coding standards: 6. Add sanity checks and validation for all relevant parameters. 7. Perform local tests to validate that the new code works as expected. 8. If applicable, add a new test command in `.github/workflow/ci.yml`. -9. Update MultiQC config `assets/multiqc_config.yaml` so relevant suffixes, file name clean up and module plots are in the appropriate order. If applicable, add a [MultiQC](https://https://multiqc.info/) module. +9. Update MultiQC config `assets/multiqc_config.yml` so relevant suffixes, file name clean up and module plots are in the appropriate order. If applicable, add a [MultiQC](https://https://multiqc.info/) module. 10. Add a description of the output files and if relevant any appropriate images from the MultiQC report to `docs/output.md`. ### Default values @@ -92,8 +91,8 @@ The process resources can be passed on to the tool dynamically within the proces Please use the following naming schemes, to make it easy to understand what is going where. -* initial process channel: `ch_output_from_` -* intermediate and terminal channels: `ch__for_` +- initial process channel: `ch_output_from_` +- intermediate and terminal channels: `ch__for_` ### Nextflow version bumping diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5379c092..527bcbd4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -2,7 +2,6 @@ name: Bug report description: Report something that is broken or incorrect labels: bug body: - - type: markdown attributes: value: | diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 31d57c86..d4f73bf9 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -16,10 +16,10 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/baca - [ ] This comment contains a description of changes (with reason). - [ ] If you've fixed a bug or added code that should be tested, add tests! - - [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md) - - [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. + - [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md) + - [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. - [ ] Make sure your code lints (`nf-core lint`). -- [ ] Ensure the test suite passes (`nextflow run . -profile test,docker` --outdir `). +- [ ] Ensure the test suite passes (`nextflow run . -profile test,docker --outdir `). - [ ] Usage Documentation in `docs/usage.md` is updated. - [ ] Output Documentation in `docs/output.md` is updated. - [ ] `CHANGELOG.md` is updated. diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index 7655d02a..4e7752bc 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -18,7 +18,6 @@ jobs: # TODO nf-core: You can customise AWS full pipeline tests as required # Add full size test data (but still relatively small datasets for few samples) # on the `test_full.config` test runs with only one set of parameters - with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index eda5d710..e04a4be1 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -10,9 +10,9 @@ jobs: if: github.repository == 'nf-core/bacass' runs-on: ubuntu-latest steps: + # Launch workflow using Tower CLI tool action - name: Launch workflow via tower uses: nf-core/tower-action@v3 - with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index 453a14f4..5ae4f83e 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -13,8 +13,7 @@ jobs: - name: Check PRs if: github.repository == 'nf-core/bacass' run: | - { [[ ${{github.event.pull_request.head.repo.full_name }} == nf-core/bacass ]] && [[ $GITHUB_HEAD_REF = "dev" ]]; } || [[ $GITHUB_HEAD_REF == "patch" ]] - + "{ [[ ${{github.event.pull_request.head.repo.full_name }} == nf-core/bacass ]] && [[ $GITHUB_HEAD_REF = "dev" ]]; } || [[ $GITHUB_HEAD_REF == "patch" ]]" # If the above check failed, post a comment on the PR explaining the failure # NOTE - this doesn't currently work if the PR is coming from a fork, due to limitations in GitHub actions secrets @@ -43,4 +42,4 @@ jobs: Thanks again for your contribution! repo-token: ${{ secrets.GITHUB_TOKEN }} allow-repeats: false - +# diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ede529a7..c4e0a928 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,18 +16,18 @@ jobs: test: name: Run pipeline with test data # Only run on push if this is the nf-core dev branch (merged PRs) - if: ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/bacass') }} + if: "${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/bacass') }}" runs-on: ubuntu-latest strategy: matrix: # Nextflow versions include: # Test pipeline minimum Nextflow version - - NXF_VER: '21.10.3' - NXF_EDGE: '' + - NXF_VER: "21.10.3" + NXF_EDGE: "" # Test latest edge release of Nextflow - - NXF_VER: '' - NXF_EDGE: '1' + - NXF_VER: "" + NXF_EDGE: "1" steps: - name: Check out pipeline code uses: actions/checkout@v2 @@ -48,3 +48,5 @@ jobs: # Remember that you can parallelise this by using strategy.matrix run: | nextflow run ${GITHUB_WORKSPACE} -profile test,docker --outdir ./results + +# diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index fda934c0..e9cf5de3 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -1,6 +1,7 @@ name: nf-core linting # This workflow is triggered on pushes and PRs to the repository. -# It runs the `nf-core lint` and markdown lint tests to ensure that the code meets the nf-core guidelines +# It runs the `nf-core lint` and markdown lint tests to ensure +# that the code meets the nf-core guidelines. on: push: pull_request: @@ -8,42 +9,6 @@ on: types: [published] jobs: - Markdown: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - - name: Install markdownlint - run: npm install -g markdownlint-cli - - name: Run Markdownlint - run: markdownlint . - - # If the above check failed, post a comment on the PR explaining the failure - - name: Post PR comment - if: failure() - uses: mshick/add-pr-comment@v1 - with: - message: | - ## Markdown linting is failing - - To keep the code consistent with lots of contributors, we run automated code consistency checks. - To fix this CI test, please run: - - * Install `markdownlint-cli` - * On Mac: `brew install markdownlint-cli` - * Everything else: [Install `npm`](https://www.npmjs.com/get-npm) then [install `markdownlint-cli`](https://www.npmjs.com/package/markdownlint-cli) (`npm install -g markdownlint-cli`) - * Fix the markdown errors - * Automatically: `markdownlint . --fix` - * Manually resolve anything left from `markdownlint .` - - Once you push these changes the test should pass, and you can hide this comment :+1: - - We highly recommend setting up markdownlint in your code editor so that this formatting is done automatically on save. Ask about it on Slack for help! - - Thanks again for your contribution! - repo-token: ${{ secrets.GITHUB_TOKEN }} - allow-repeats: false - EditorConfig: runs-on: ubuntu-latest steps: @@ -55,49 +20,24 @@ jobs: run: npm install -g editorconfig-checker - name: Run ECLint check - run: editorconfig-checker -exclude README.md $(git ls-files | grep -v test) + run: editorconfig-checker -exclude README.md $(find .* -type f | grep -v '.git\|.py\|.md\|json\|yml\|yaml\|html\|css\|work\|.nextflow\|build\|nf_core.egg-info\|log.txt\|Makefile') - YAML: + Prettier: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@master - - name: 'Yamllint' - uses: karancode/yamllint-github-action@master - with: - yamllint_file_or_dir: '.' - yamllint_config_filepath: '.yamllint.yml' - - # If the above check failed, post a comment on the PR explaining the failure - - name: Post PR comment - if: failure() - uses: mshick/add-pr-comment@v1 - with: - message: | - ## YAML linting is failing - - To keep the code consistent with lots of contributors, we run automated code consistency checks. - To fix this CI test, please run: - - * Install `yamllint` - * Install `yamllint` following [this](https://yamllint.readthedocs.io/en/stable/quickstart.html#installing-yamllint) - instructions or alternative install it in your [conda environment](https://anaconda.org/conda-forge/yamllint) - * Fix the markdown errors - * Run the test locally: `yamllint $(find . -type f -name "*.yml" -o -name "*.yaml") -c ./.yamllint.yml` - * Fix any reported errors in your YAML files + - uses: actions/checkout@v2 - Once you push these changes the test should pass, and you can hide this comment :+1: + - uses: actions/setup-node@v2 - We highly recommend setting up yaml-lint in your code editor so that this formatting is done automatically on save. Ask about it on Slack for help! + - name: Install Prettier + run: npm install -g prettier - Thanks again for your contribution! - repo-token: ${{ secrets.GITHUB_TOKEN }} - allow-repeats: false + - name: Run Prettier --check + run: prettier --check ${GITHUB_WORKSPACE} nf-core: runs-on: ubuntu-latest steps: - - name: Check out pipeline code uses: actions/checkout@v2 @@ -110,8 +50,8 @@ jobs: - uses: actions/setup-python@v1 with: - python-version: '3.6' - architecture: 'x64' + python-version: "3.6" + architecture: "x64" - name: Install dependencies run: | @@ -139,3 +79,4 @@ jobs: lint_results.md PR_number.txt +# diff --git a/.github/workflows/linting_comment.yml b/.github/workflows/linting_comment.yml index 44d72994..91c487a1 100644 --- a/.github/workflows/linting_comment.yml +++ b/.github/workflows/linting_comment.yml @@ -1,4 +1,3 @@ - name: nf-core linting comment # This workflow is triggered after the linting action is complete # It posts an automated comment to the PR, even if the PR is coming from a fork @@ -27,4 +26,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} number: ${{ steps.pr_number.outputs.pr_number }} path: linting-logs/lint_results.md - +# diff --git a/.gitpod.yml b/.gitpod.yml index b7d4cee1..c452ee93 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,13 +2,13 @@ image: nfcore/gitpod:latest vscode: extensions: # based on nf-core.nf-core-extensionpack - - codezombiech.gitignore # Language support for .gitignore files + - codezombiech.gitignore # Language support for .gitignore files # - cssho.vscode-svgviewer # SVG viewer - - davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code - - eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed - - EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files - - Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar - - mechatroner.rainbow-csv # Highlight columns in csv files in different colors + - davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code + - eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed + - EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files + - Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar + - mechatroner.rainbow-csv # Highlight columns in csv files in different colors # - nextflow.nextflow # Nextflow syntax highlighting - - oderwat.indent-rainbow # Highlight indentation level - - streetsidesoftware.code-spell-checker # Spelling checker for source code + - oderwat.indent-rainbow # Highlight indentation level + - streetsidesoftware.code-spell-checker # Spelling checker for source code diff --git a/.markdownlint.yml b/.markdownlint.yml deleted file mode 100644 index 9e605fcf..00000000 --- a/.markdownlint.yml +++ /dev/null @@ -1,14 +0,0 @@ -# Markdownlint configuration file -default: true -line-length: false -ul-indent: - indent: 4 -no-duplicate-header: - siblings_only: true -no-inline-html: - allowed_elements: - - img - - p - - kbd - - details - - summary diff --git a/.prettierrc.yml b/.prettierrc.yml new file mode 100644 index 00000000..c81f9a76 --- /dev/null +++ b/.prettierrc.yml @@ -0,0 +1 @@ +printWidth: 120 diff --git a/.yamllint.yml b/.yamllint.yml deleted file mode 100644 index d466deec..00000000 --- a/.yamllint.yml +++ /dev/null @@ -1,6 +0,0 @@ -extends: default - -rules: - document-start: disable - line-length: disable - truthy: disable diff --git a/CHANGELOG.md b/CHANGELOG.md index 3afacd9b..c5db3c7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ Initial release of nf-core/bacass, created with the [nf-core](https://nf-co.re/) ### `Fixed` +- Clarified conda usage and added an installation tutorial for Singularity since the one on Syllabs' website uses an outdate version of GO Compiler + ### `Dependencies` ### `Deprecated` diff --git a/CITATIONS.md b/CITATIONS.md index 48d05a82..e3a69e9b 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -10,23 +10,26 @@ ## Pipeline tools -* [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) +- [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) -* [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/) - > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924. +- [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/) + > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924. ## Software packaging/containerisation tools -* [Anaconda](https://anaconda.com) - > Anaconda Software Distribution. Computer software. Vers. 2-2.4.0. Anaconda, Nov. 2016. Web. +- [Anaconda](https://anaconda.com) -* [Bioconda](https://pubmed.ncbi.nlm.nih.gov/29967506/) - > Grüning B, Dale R, Sjödin A, Chapman BA, Rowe J, Tomkins-Tinch CH, Valieris R, Köster J; Bioconda Team. Bioconda: sustainable and comprehensive software distribution for the life sciences. Nat Methods. 2018 Jul;15(7):475-476. doi: 10.1038/s41592-018-0046-7. PubMed PMID: 29967506. + > Anaconda Software Distribution. Computer software. Vers. 2-2.4.0. Anaconda, Nov. 2016. Web. -* [BioContainers](https://pubmed.ncbi.nlm.nih.gov/28379341/) - > da Veiga Leprevost F, Grüning B, Aflitos SA, Röst HL, Uszkoreit J, Barsnes H, Vaudel M, Moreno P, Gatto L, Weber J, Bai M, Jimenez RC, Sachsenberg T, Pfeuffer J, Alvarez RV, Griss J, Nesvizhskii AI, Perez-Riverol Y. BioContainers: an open-source and community-driven framework for software standardization. Bioinformatics. 2017 Aug 15;33(16):2580-2582. doi: 10.1093/bioinformatics/btx192. PubMed PMID: 28379341; PubMed Central PMCID: PMC5870671. +- [Bioconda](https://pubmed.ncbi.nlm.nih.gov/29967506/) -* [Docker](https://dl.acm.org/doi/10.5555/2600239.2600241) + > Grüning B, Dale R, Sjödin A, Chapman BA, Rowe J, Tomkins-Tinch CH, Valieris R, Köster J; Bioconda Team. Bioconda: sustainable and comprehensive software distribution for the life sciences. Nat Methods. 2018 Jul;15(7):475-476. doi: 10.1038/s41592-018-0046-7. PubMed PMID: 29967506. -* [Singularity](https://pubmed.ncbi.nlm.nih.gov/28494014/) - > Kurtzer GM, Sochat V, Bauer MW. Singularity: Scientific containers for mobility of compute. PLoS One. 2017 May 11;12(5):e0177459. doi: 10.1371/journal.pone.0177459. eCollection 2017. PubMed PMID: 28494014; PubMed Central PMCID: PMC5426675. +- [BioContainers](https://pubmed.ncbi.nlm.nih.gov/28379341/) + + > da Veiga Leprevost F, Grüning B, Aflitos SA, Röst HL, Uszkoreit J, Barsnes H, Vaudel M, Moreno P, Gatto L, Weber J, Bai M, Jimenez RC, Sachsenberg T, Pfeuffer J, Alvarez RV, Griss J, Nesvizhskii AI, Perez-Riverol Y. BioContainers: an open-source and community-driven framework for software standardization. Bioinformatics. 2017 Aug 15;33(16):2580-2582. doi: 10.1093/bioinformatics/btx192. PubMed PMID: 28379341; PubMed Central PMCID: PMC5870671. + +- [Docker](https://dl.acm.org/doi/10.5555/2600239.2600241) + +- [Singularity](https://pubmed.ncbi.nlm.nih.gov/28494014/) + > Kurtzer GM, Sochat V, Bauer MW. Singularity: Scientific containers for mobility of compute. PLoS One. 2017 May 11;12(5):e0177459. doi: 10.1371/journal.pone.0177459. eCollection 2017. PubMed PMID: 28494014; PubMed Central PMCID: PMC5426675. diff --git a/README.md b/README.md index f10e90d1..eccd8cf9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ![nf-core/bacass](docs/images/nf-core-bacass_logo_light.png#gh-light-mode-only) ![nf-core/bacass](docs/images/nf-core-bacass_logo_dark.png#gh-dark-mode-only) +# ![nf-core/bacass](docs/images/nf-core/bacass_logo_light.png#gh-light-mode-only) ![nf-core/bacass](docs/images/nf-core/bacass_logo_dark.png#gh-dark-mode-only) [![GitHub Actions CI Status](https://github.com/nf-core/bacass/workflows/nf-core%20CI/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+CI%22) [![GitHub Actions Linting Status](https://github.com/nf-core/bacass/workflows/nf-core%20linting/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+linting%22) @@ -17,11 +17,13 @@ ## Introduction + **nf-core/bacass** is a bioinformatics best-practice analysis pipeline for Simple bacterial assembly and annotation. The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It uses Docker/Singularity containers making installation trivial and results highly reproducible. The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. Where possible, these processes have been submitted to and installed from [nf-core/modules](https://github.com/nf-core/modules) in order to make them available to all nf-core pipelines, and to everyone within the Nextflow community! + On release, automated continuous integration tests run the pipeline on a full-sized dataset on the AWS cloud infrastructure. This ensures that the pipeline runs on AWS, has sensible resource allocation defaults set to run on real-world datasets, and permits the persistent storage of results to benchmark between pipeline releases and other analysis sources. The results obtained from the full-sized test can be viewed on the [nf-core website](https://nf-co.re/bacass/results). ## Pipeline summary @@ -35,28 +37,28 @@ On release, automated continuous integration tests run the pipeline on a full-si 1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=21.10.3`) -2. Install any of [`Docker`](https://docs.docker.com/engine/installation/), [`Singularity`](https://www.sylabs.io/guides/3.0/user-guide/), [`Podman`](https://podman.io/), [`Shifter`](https://nersc.gitlab.io/development/shifter/how-to-use/) or [`Charliecloud`](https://hpc.github.io/charliecloud/) for full pipeline reproducibility _(please only use [`Conda`](https://conda.io/miniconda.html) as a last resort; see [docs](https://nf-co.re/usage/configuration#basic-configuration-profiles))_ +2. Install any of [`Docker`](https://docs.docker.com/engine/installation/), [`Singularity`](https://www.sylabs.io/guides/3.0/user-guide/) (you can follow [this tutorial](https://singularity-tutorial.github.io/01-installation/)), [`Podman`](https://podman.io/), [`Shifter`](https://nersc.gitlab.io/development/shifter/how-to-use/) or [`Charliecloud`](https://hpc.github.io/charliecloud/) for full pipeline reproducibility _(you can use [`Conda`](https://conda.io/miniconda.html) both to install Nextflow itself and also to manage software within pipelines. Please only use it within pipelines as a last resort; see [docs](https://nf-co.re/usage/configuration#basic-configuration-profiles))_. 3. Download the pipeline and test it on a minimal dataset with a single command: - ```console - nextflow run nf-core/bacass -profile test,YOURPROFILE --outdir - ``` + ```console + nextflow run nf-core/bacass -profile test,YOURPROFILE --outdir + ``` - Note that some form of configuration will be needed so that Nextflow knows how to fetch the required software. This is usually done in the form of a config profile (`YOURPROFILE` in the example command above). You can chain multiple config profiles in a comma-separated string. + Note that some form of configuration will be needed so that Nextflow knows how to fetch the required software. This is usually done in the form of a config profile (`YOURPROFILE` in the example command above). You can chain multiple config profiles in a comma-separated string. - > * The pipeline comes with config profiles called `docker`, `singularity`, `podman`, `shifter`, `charliecloud` and `conda` which instruct the pipeline to use the named tool for software management. For example, `-profile test,docker`. - > * Please check [nf-core/configs](https://github.com/nf-core/configs#documentation) to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use `-profile ` in your command. This will enable either `docker` or `singularity` and set the appropriate execution settings for your local compute environment. - > * If you are using `singularity`, please use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to download images first, before running the pipeline. Setting the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options enables you to store and re-use the images from a central location for future pipeline runs. - > * If you are using `conda`, it is highly recommended to use the [`NXF_CONDA_CACHEDIR` or `conda.cacheDir`](https://www.nextflow.io/docs/latest/conda.html) settings to store the environments in a central location for future pipeline runs. + > - The pipeline comes with config profiles called `docker`, `singularity`, `podman`, `shifter`, `charliecloud` and `conda` which instruct the pipeline to use the named tool for software management. For example, `-profile test,docker`. + > - Please check [nf-core/configs](https://github.com/nf-core/configs#documentation) to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use `-profile ` in your command. This will enable either `docker` or `singularity` and set the appropriate execution settings for your local compute environment. + > - If you are using `singularity`, please use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to download images first, before running the pipeline. Setting the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options enables you to store and re-use the images from a central location for future pipeline runs. + > - If you are using `conda`, it is highly recommended to use the [`NXF_CONDA_CACHEDIR` or `conda.cacheDir`](https://www.nextflow.io/docs/latest/conda.html) settings to store the environments in a central location for future pipeline runs. 4. Start running your own analysis! - + - ```console - nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile - ``` + ```console + nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile + ``` ## Documentation @@ -82,6 +84,7 @@ For further information or help, don't hesitate to get in touch on the [Slack `# + An extensive list of references for the tools used by the pipeline can be found in the [`CITATIONS.md`](CITATIONS.md) file. You can cite the `nf-core` publication as follows: diff --git a/assets/email_template.html b/assets/email_template.html index ebf8e7a3..49c7405c 100644 --- a/assets/email_template.html +++ b/assets/email_template.html @@ -1,53 +1,111 @@ - - - - + + + + - - nf-core/bacass Pipeline Report - - -

+ + + nf-core/bacass Pipeline Report + + +
+ - +

nf-core/bacass v${version}

+

Run Name: $runName

-

nf-core/bacass v${version}

-

Run Name: $runName

- -<% if (!success){ - out << """ -
-

nf-core/bacass execution completed unsuccessfully!

+ <% if (!success){ out << """ +
+

nf-core/bacass execution completed unsuccessfully!

The exit status of the task that caused the workflow execution to fail was: $exitStatus.

The full error message was:

-
${errorReport}
-
- """ -} else { - out << """ -
+
${errorReport}
+
+ """ } else { out << """ +
nf-core/bacass execution completed successfully! -
- """ -} -%> +
+ """ } %> -

The workflow was completed at $dateComplete (duration: $duration)

-

The command used to launch the workflow was as follows:

-
$commandLine
+

The workflow was completed at $dateComplete (duration: $duration)

+

The command used to launch the workflow was as follows:

+
+$commandLine
-

Pipeline Configuration:

- - - <% out << summary.collect{ k,v -> "" }.join("\n") %> - -
$k
$v
+

Pipeline Configuration:

+ + + <% out << summary.collect{ k,v -> " + + + + + " }.join("\n") %> + +
+ $k + +
$v
+
-

nf-core/bacass

-

https://github.com/nf-core/bacass

- -
- - +

nf-core/bacass

+

https://github.com/nf-core/bacass

+
+ diff --git a/assets/multiqc_config.yaml b/assets/multiqc_config.yaml deleted file mode 100644 index 228691b5..00000000 --- a/assets/multiqc_config.yaml +++ /dev/null @@ -1,11 +0,0 @@ -report_comment: > - This report has been generated by the nf-core/bacass - analysis pipeline. For information about how to interpret these results, please see the - documentation. -report_section_order: - software_versions: - order: -1000 - nf-core-bacass-summary: - order: -1001 - -export_plots: true diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml new file mode 100644 index 00000000..c16e95ab --- /dev/null +++ b/assets/multiqc_config.yml @@ -0,0 +1,11 @@ +report_comment: > + This report has been generated by the nf-core/bacass + analysis pipeline. For information about how to interpret these results, please see the + documentation. +report_section_order: + software_versions: + order: -1000 + "nf-core-bacass-summary": + order: -1001 + +export_plots: true diff --git a/assets/schema_input.json b/assets/schema_input.json index 9d286b07..9146feaa 100644 --- a/assets/schema_input.json +++ b/assets/schema_input.json @@ -31,9 +31,6 @@ ] } }, - "required": [ - "sample", - "fastq_1" - ] + "required": ["sample", "fastq_1"] } } diff --git a/docs/README.md b/docs/README.md index 5fbf9904..cfb27a10 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,9 +2,9 @@ The nf-core/bacass documentation is split into the following pages: -* [Usage](usage.md) - * An overview of how the pipeline works, how to run it and a description of all of the different command-line flags. -* [Output](output.md) - * An overview of the different results produced by the pipeline and how to interpret them. +- [Usage](usage.md) + - An overview of how the pipeline works, how to run it and a description of all of the different command-line flags. +- [Output](output.md) + - An overview of the different results produced by the pipeline and how to interpret them. You can find a lot more documentation about installing, configuring and running nf-core pipelines on the website: [https://nf-co.re](https://nf-co.re) diff --git a/docs/output.md b/docs/output.md index a72b5940..50ca899a 100644 --- a/docs/output.md +++ b/docs/output.md @@ -12,18 +12,18 @@ The directories listed below will be created in the results directory after the The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes data using the following steps: -* [FastQC](#fastqc) - Raw read QC -* [MultiQC](#multiqc) - Aggregate report describing results and QC from the whole pipeline -* [Pipeline information](#pipeline-information) - Report metrics generated during the workflow execution +- [FastQC](#fastqc) - Raw read QC +- [MultiQC](#multiqc) - Aggregate report describing results and QC from the whole pipeline +- [Pipeline information](#pipeline-information) - Report metrics generated during the workflow execution ### FastQC
Output files -* `fastqc/` - * `*_fastqc.html`: FastQC report containing quality metrics. - * `*_fastqc.zip`: Zip archive containing the FastQC report, tab-delimited data file and plot images. +- `fastqc/` + - `*_fastqc.html`: FastQC report containing quality metrics. + - `*_fastqc.zip`: Zip archive containing the FastQC report, tab-delimited data file and plot images.
@@ -42,10 +42,10 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
Output files -* `multiqc/` - * `multiqc_report.html`: a standalone HTML file that can be viewed in your web browser. - * `multiqc_data/`: directory containing parsed statistics from the different tools used in the pipeline. - * `multiqc_plots/`: directory containing static images from the report in various formats. +- `multiqc/` + - `multiqc_report.html`: a standalone HTML file that can be viewed in your web browser. + - `multiqc_data/`: directory containing parsed statistics from the different tools used in the pipeline. + - `multiqc_plots/`: directory containing static images from the report in various formats.
@@ -58,10 +58,10 @@ Results generated by MultiQC collate pipeline QC from supported tools e.g. FastQ
Output files -* `pipeline_info/` - * Reports generated by Nextflow: `execution_report.html`, `execution_timeline.html`, `execution_trace.txt` and `pipeline_dag.dot`/`pipeline_dag.svg`. - * Reports generated by the pipeline: `pipeline_report.html`, `pipeline_report.txt` and `software_versions.yml`. The `pipeline_report*` files will only be present if the `--email` / `--email_on_fail` parameter's are used when running the pipeline. - * Reformatted samplesheet files used as input to the pipeline: `samplesheet.valid.csv`. +- `pipeline_info/` + - Reports generated by Nextflow: `execution_report.html`, `execution_timeline.html`, `execution_trace.txt` and `pipeline_dag.dot`/`pipeline_dag.svg`. + - Reports generated by the pipeline: `pipeline_report.html`, `pipeline_report.txt` and `software_versions.yml`. The `pipeline_report*` files will only be present if the `--email` / `--email_on_fail` parameter's are used when running the pipeline. + - Reformatted samplesheet files used as input to the pipeline: `samplesheet.valid.csv`.
diff --git a/docs/usage.md b/docs/usage.md index e82d37aa..a3982540 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -44,11 +44,11 @@ TREATMENT_REP3,AEG588A6_S6_L003_R1_001.fastq.gz, TREATMENT_REP3,AEG588A6_S6_L004_R1_001.fastq.gz, ``` -| Column | Description | -|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `sample` | Custom sample name. This entry will be identical for multiple sequencing libraries/runs from the same sample. Spaces in sample names are automatically converted to underscores (`_`). | -| `fastq_1` | Full path to FastQ file for Illumina short reads 1. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". | -| `fastq_2` | Full path to FastQ file for Illumina short reads 2. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". | +| Column | Description | +| --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `sample` | Custom sample name. This entry will be identical for multiple sequencing libraries/runs from the same sample. Spaces in sample names are automatically converted to underscores (`_`). | +| `fastq_1` | Full path to FastQ file for Illumina short reads 1. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". | +| `fastq_2` | Full path to FastQ file for Illumina short reads 2. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". | An [example samplesheet](../assets/samplesheet.csv) has been provided with the pipeline. @@ -57,7 +57,7 @@ An [example samplesheet](../assets/samplesheet.csv) has been provided with the p The typical command for running the pipeline is as follows: ```console -nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile docker +nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile docker ``` This will launch the pipeline with the `docker` configuration profile. See below for more information about profiles. @@ -65,9 +65,9 @@ This will launch the pipeline with the `docker` configuration profile. See below Note that the pipeline will create the following files in your working directory: ```console -work # Directory containing the nextflow working files -results # Finished results (configurable, see below) -.nextflow_log # Log file from Nextflow +work # Directory containing the nextflow working files + # Finished results in specified location (defined with --outdir) +.nextflow_log # Log file from Nextflow # Other nextflow hidden files, eg. history of pipeline runs and old logs. ``` @@ -106,25 +106,25 @@ They are loaded in sequence, so later profiles can overwrite earlier profiles. If `-profile` is not specified, the pipeline will run locally and expect all software to be installed and available on the `PATH`. This is _not_ recommended. -* `docker` - * A generic configuration profile to be used with [Docker](https://docker.com/) -* `singularity` - * A generic configuration profile to be used with [Singularity](https://sylabs.io/docs/) -* `podman` - * A generic configuration profile to be used with [Podman](https://podman.io/) -* `shifter` - * A generic configuration profile to be used with [Shifter](https://nersc.gitlab.io/development/shifter/how-to-use/) -* `charliecloud` - * A generic configuration profile to be used with [Charliecloud](https://hpc.github.io/charliecloud/) -* `conda` - * A generic configuration profile to be used with [Conda](https://conda.io/docs/). Please only use Conda as a last resort i.e. when it's not possible to run the pipeline with Docker, Singularity, Podman, Shifter or Charliecloud. -* `test` - * A profile with a complete configuration for automated testing - * Includes links to test data so needs no other parameters +- `docker` + - A generic configuration profile to be used with [Docker](https://docker.com/) +- `singularity` + - A generic configuration profile to be used with [Singularity](https://sylabs.io/docs/) +- `podman` + - A generic configuration profile to be used with [Podman](https://podman.io/) +- `shifter` + - A generic configuration profile to be used with [Shifter](https://nersc.gitlab.io/development/shifter/how-to-use/) +- `charliecloud` + - A generic configuration profile to be used with [Charliecloud](https://hpc.github.io/charliecloud/) +- `conda` + - A generic configuration profile to be used with [Conda](https://conda.io/docs/). Please only use Conda as a last resort i.e. when it's not possible to run the pipeline with Docker, Singularity, Podman, Shifter or Charliecloud. +- `test` + - A profile with a complete configuration for automated testing + - Includes links to test data so needs no other parameters ### `-resume` -Specify this when restarting a pipeline. Nextflow will used cached results from any pipeline steps where the inputs are the same, continuing from where it got to previously. +Specify this when restarting a pipeline. Nextflow will use cached results from any pipeline steps where the inputs are the same, continuing from where it got to previously. For input to be considered the same, not only the names must be identical but the files' contents as well. For more info about this parameter, see [this blog post](https://www.nextflow.io/blog/2019/demystifying-nextflow-resume.html). You can also supply a run name to resume a specific run: `-resume [run-name]`. Use the `nextflow log` command to show previous run names. @@ -186,6 +186,7 @@ process { ``` > **NB:** We specify the full process name i.e. `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN` in the config file because this takes priority over the short name (`STAR_ALIGN`) and allows existing configuration using the full process name to be correctly overridden. +> > If you get a warning suggesting that the process selector isn't recognised check that the process name has been specified correctly. ### Updating containers @@ -196,35 +197,35 @@ The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementatio 2. Find the latest version of the Biocontainer available on [Quay.io](https://quay.io/repository/biocontainers/pangolin?tag=latest&tab=tags) 3. Create the custom config accordingly: - * For Docker: - - ```nextflow - process { - withName: PANGOLIN { - container = 'quay.io/biocontainers/pangolin:3.0.5--pyhdfd78af_0' - } - } - ``` - - * For Singularity: - - ```nextflow - process { - withName: PANGOLIN { - container = 'https://depot.galaxyproject.org/singularity/pangolin:3.0.5--pyhdfd78af_0' - } - } - ``` - - * For Conda: - - ```nextflow - process { - withName: PANGOLIN { - conda = 'bioconda::pangolin=3.0.5' - } - } - ``` + - For Docker: + + ```nextflow + process { + withName: PANGOLIN { + container = 'quay.io/biocontainers/pangolin:3.0.5--pyhdfd78af_0' + } + } + ``` + + - For Singularity: + + ```nextflow + process { + withName: PANGOLIN { + container = 'https://depot.galaxyproject.org/singularity/pangolin:3.0.5--pyhdfd78af_0' + } + } + ``` + + - For Conda: + + ```nextflow + process { + withName: PANGOLIN { + conda = 'bioconda::pangolin=3.0.5' + } + } + ``` > **NB:** If you wish to periodically update individual tool-specific results (e.g. Pangolin) generated by the pipeline then you must ensure to keep the `work/` directory otherwise the `-resume` ability of the pipeline will be compromised and it will restart from scratch. diff --git a/modules.json b/modules.json index b630d17f..91697355 100644 --- a/modules.json +++ b/modules.json @@ -4,14 +4,14 @@ "repos": { "nf-core/modules": { "custom/dumpsoftwareversions": { - "git_sha": "20d8250d9f39ddb05dfb437603aaf99b5c0b2b41" + "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d" }, "fastqc": { - "git_sha": "9d0cad583b9a71a6509b754fdf589cbfbed08961" + "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d" }, "multiqc": { - "git_sha": "20d8250d9f39ddb05dfb437603aaf99b5c0b2b41" + "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d" } } } -} \ No newline at end of file +} diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf b/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf index 934bb467..327d5100 100644 --- a/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf +++ b/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf @@ -15,6 +15,9 @@ process CUSTOM_DUMPSOFTWAREVERSIONS { path "software_versions_mqc.yml", emit: mqc_yml path "versions.yml" , emit: versions + when: + task.ext.when == null || task.ext.when + script: def args = task.ext.args ?: '' template 'dumpsoftwareversions.py' diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml b/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml index 5b5b8a60..60b546a0 100644 --- a/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml +++ b/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml @@ -8,7 +8,7 @@ tools: description: Custom module used to dump software versions within the nf-core pipeline template homepage: https://github.com/nf-core/tools documentation: https://github.com/nf-core/tools - licence: ['MIT'] + licence: ["MIT"] input: - versions: type: file diff --git a/modules/nf-core/modules/fastqc/main.nf b/modules/nf-core/modules/fastqc/main.nf index d250eca0..ed6b8c50 100644 --- a/modules/nf-core/modules/fastqc/main.nf +++ b/modules/nf-core/modules/fastqc/main.nf @@ -15,6 +15,9 @@ process FASTQC { tuple val(meta), path("*.zip") , emit: zip path "versions.yml" , emit: versions + when: + task.ext.when == null || task.ext.when + script: def args = task.ext.args ?: '' // Add soft-links to original FastQs for consistent naming in pipeline diff --git a/modules/nf-core/modules/fastqc/meta.yml b/modules/nf-core/modules/fastqc/meta.yml index b09553a3..4da5bb5a 100644 --- a/modules/nf-core/modules/fastqc/meta.yml +++ b/modules/nf-core/modules/fastqc/meta.yml @@ -1,52 +1,52 @@ name: fastqc description: Run FastQC on sequenced reads keywords: - - quality control - - qc - - adapters - - fastq + - quality control + - qc + - adapters + - fastq tools: - - fastqc: - description: | - FastQC gives general quality metrics about your reads. - It provides information about the quality score distribution - across your reads, the per base sequence content (%A/C/G/T). - You get information about adapter contamination and other - overrepresented sequences. - homepage: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ - documentation: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/ - licence: ['GPL-2.0-only'] + - fastqc: + description: | + FastQC gives general quality metrics about your reads. + It provides information about the quality score distribution + across your reads, the per base sequence content (%A/C/G/T). + You get information about adapter contamination and other + overrepresented sequences. + homepage: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ + documentation: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/ + licence: ["GPL-2.0-only"] input: - - meta: - type: map - description: | - Groovy Map containing sample information - e.g. [ id:'test', single_end:false ] - - reads: - type: file - description: | - List of input FastQ files of size 1 and 2 for single-end and paired-end data, - respectively. + - meta: + type: map + description: | + Groovy Map containing sample information + e.g. [ id:'test', single_end:false ] + - reads: + type: file + description: | + List of input FastQ files of size 1 and 2 for single-end and paired-end data, + respectively. output: - - meta: - type: map - description: | - Groovy Map containing sample information - e.g. [ id:'test', single_end:false ] - - html: - type: file - description: FastQC report - pattern: "*_{fastqc.html}" - - zip: - type: file - description: FastQC report archive - pattern: "*_{fastqc.zip}" - - versions: - type: file - description: File containing software versions - pattern: "versions.yml" + - meta: + type: map + description: | + Groovy Map containing sample information + e.g. [ id:'test', single_end:false ] + - html: + type: file + description: FastQC report + pattern: "*_{fastqc.html}" + - zip: + type: file + description: FastQC report archive + pattern: "*_{fastqc.zip}" + - versions: + type: file + description: File containing software versions + pattern: "versions.yml" authors: - - "@drpatelh" - - "@grst" - - "@ewels" - - "@FelixKrueger" + - "@drpatelh" + - "@grst" + - "@ewels" + - "@FelixKrueger" diff --git a/modules/nf-core/modules/multiqc/main.nf b/modules/nf-core/modules/multiqc/main.nf index 3dceb162..1264aac1 100644 --- a/modules/nf-core/modules/multiqc/main.nf +++ b/modules/nf-core/modules/multiqc/main.nf @@ -1,10 +1,10 @@ process MULTIQC { label 'process_medium' - conda (params.enable_conda ? 'bioconda::multiqc=1.11' : null) + conda (params.enable_conda ? 'bioconda::multiqc=1.12' : null) container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/multiqc:1.11--pyhdfd78af_0' : - 'quay.io/biocontainers/multiqc:1.11--pyhdfd78af_0' }" + 'https://depot.galaxyproject.org/singularity/multiqc:1.12--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.12--pyhdfd78af_0' }" input: path multiqc_files @@ -15,6 +15,9 @@ process MULTIQC { path "*_plots" , optional:true, emit: plots path "versions.yml" , emit: versions + when: + task.ext.when == null || task.ext.when + script: def args = task.ext.args ?: '' """ diff --git a/modules/nf-core/modules/multiqc/meta.yml b/modules/nf-core/modules/multiqc/meta.yml index 63c75a45..6fa891ef 100644 --- a/modules/nf-core/modules/multiqc/meta.yml +++ b/modules/nf-core/modules/multiqc/meta.yml @@ -1,40 +1,40 @@ name: MultiQC description: Aggregate results from bioinformatics analyses across many samples into a single report keywords: - - QC - - bioinformatics tools - - Beautiful stand-alone HTML report + - QC + - bioinformatics tools + - Beautiful stand-alone HTML report tools: - - multiqc: - description: | - MultiQC searches a given directory for analysis logs and compiles a HTML report. - It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. - homepage: https://multiqc.info/ - documentation: https://multiqc.info/docs/ - licence: ['GPL-3.0-or-later'] + - multiqc: + description: | + MultiQC searches a given directory for analysis logs and compiles a HTML report. + It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. + homepage: https://multiqc.info/ + documentation: https://multiqc.info/docs/ + licence: ["GPL-3.0-or-later"] input: - - multiqc_files: - type: file - description: | - List of reports / files recognised by MultiQC, for example the html and zip output of FastQC + - multiqc_files: + type: file + description: | + List of reports / files recognised by MultiQC, for example the html and zip output of FastQC output: - - report: - type: file - description: MultiQC report file - pattern: "multiqc_report.html" - - data: - type: dir - description: MultiQC data dir - pattern: "multiqc_data" - - plots: - type: file - description: Plots created by MultiQC - pattern: "*_data" - - versions: - type: file - description: File containing software versions - pattern: "versions.yml" + - report: + type: file + description: MultiQC report file + pattern: "multiqc_report.html" + - data: + type: dir + description: MultiQC data dir + pattern: "multiqc_data" + - plots: + type: file + description: Plots created by MultiQC + pattern: "*_data" + - versions: + type: file + description: File containing software versions + pattern: "versions.yml" authors: - - "@abhi18av" - - "@bunop" - - "@drpatelh" + - "@abhi18av" + - "@bunop" + - "@drpatelh" diff --git a/nextflow_schema.json b/nextflow_schema.json index 0d4d7f78..f39b745e 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -10,10 +10,7 @@ "type": "object", "fa_icon": "fas fa-terminal", "description": "Define where the pipeline should find input data and save output data.", - "required": [ - "input", - "outdir" - ], + "required": ["input", "outdir"], "properties": { "input": { "type": "string", @@ -185,14 +182,7 @@ "description": "Method used to save pipeline results to output directory.", "help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.", "fa_icon": "fas fa-copy", - "enum": [ - "symlink", - "rellink", - "link", - "copy", - "copyNoFollow", - "move" - ], + "enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"], "hidden": true }, "email_on_fail": { diff --git a/workflows/bacass.nf b/workflows/bacass.nf index 47913e2a..c9d60ecf 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -23,7 +23,7 @@ if (params.input) { ch_input = file(params.input) } else { exit 1, 'Input sample ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -ch_multiqc_config = file("$projectDir/assets/multiqc_config.yaml", checkIfExists: true) +ch_multiqc_config = file("$projectDir/assets/multiqc_config.yml", checkIfExists: true) ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config) : Channel.empty() /* From ecf6fbb652459ab45d02f7cb7d7579088f8199f0 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Thu, 24 Mar 2022 11:33:30 +0000 Subject: [PATCH 04/21] Template update for nf-core/tools version 2.3.2 --- .github/PULL_REQUEST_TEMPLATE.md | 1 - .github/workflows/awsfulltest.yml | 2 -- .github/workflows/awstest.yml | 2 -- .gitpod.yml | 2 +- CHANGELOG.md | 2 -- 5 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d4f73bf9..47ed4c45 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -10,7 +10,6 @@ Remember that PRs should be made against the dev branch, unless you're preparing Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md) --> - ## PR checklist diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index 4e7752bc..282d8ab7 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -22,8 +22,6 @@ jobs: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} - pipeline: ${{ github.repository }} - revision: ${{ github.sha }} workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/bacass/work-${{ github.sha }} parameters: | { diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index e04a4be1..9d0b0477 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -17,8 +17,6 @@ jobs: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} - pipeline: ${{ github.repository }} - revision: ${{ github.sha }} workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/bacass/work-${{ github.sha }} parameters: | { diff --git a/.gitpod.yml b/.gitpod.yml index c452ee93..85d95ecc 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -4,7 +4,7 @@ vscode: extensions: # based on nf-core.nf-core-extensionpack - codezombiech.gitignore # Language support for .gitignore files # - cssho.vscode-svgviewer # SVG viewer - - davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code + - esbenp.prettier-vscode # Markdown/CommonMark linting and style checking for Visual Studio Code - eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed - EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files - Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar diff --git a/CHANGELOG.md b/CHANGELOG.md index c5db3c7f..3afacd9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,6 @@ Initial release of nf-core/bacass, created with the [nf-core](https://nf-co.re/) ### `Fixed` -- Clarified conda usage and added an installation tutorial for Singularity since the one on Syllabs' website uses an outdate version of GO Compiler - ### `Dependencies` ### `Deprecated` From 270849a803d3aff717a04a9c67e3a523941e6dc4 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Mon, 16 May 2022 10:16:01 +0000 Subject: [PATCH 05/21] Template update for nf-core/tools version 2.4 --- .github/workflows/awsfulltest.yml | 3 - .github/workflows/awstest.yml | 3 - .github/workflows/branch.yml | 3 +- .github/workflows/ci.yml | 2 - .github/workflows/fix-linting.yml | 55 ++++++++++ .github/workflows/linting.yml | 4 +- .github/workflows/linting_comment.yml | 1 - .prettierignore | 9 ++ README.md | 25 ++--- assets/email_template.html | 142 ++++++++------------------ bin/check_samplesheet.py | 16 ++- nextflow.config | 2 +- 12 files changed, 135 insertions(+), 130 deletions(-) create mode 100644 .github/workflows/fix-linting.yml create mode 100644 .prettierignore diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index 282d8ab7..9e5c20c8 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -28,6 +28,3 @@ jobs: "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-${{ github.sha }}" } profiles: test_full,aws_tower - nextflow_config: | - process.errorStrategy = 'retry' - process.maxRetries = 3 diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index 9d0b0477..22683509 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -23,6 +23,3 @@ jobs: "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-test-${{ github.sha }}" } profiles: test,aws_tower - nextflow_config: | - process.errorStrategy = 'retry' - process.maxRetries = 3 diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index 5ae4f83e..aaaa127d 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -13,7 +13,7 @@ jobs: - name: Check PRs if: github.repository == 'nf-core/bacass' run: | - "{ [[ ${{github.event.pull_request.head.repo.full_name }} == nf-core/bacass ]] && [[ $GITHUB_HEAD_REF = "dev" ]]; } || [[ $GITHUB_HEAD_REF == "patch" ]]" + { [[ ${{github.event.pull_request.head.repo.full_name }} == nf-core/bacass ]] && [[ $GITHUB_HEAD_REF = "dev" ]]; } || [[ $GITHUB_HEAD_REF == "patch" ]] # If the above check failed, post a comment on the PR explaining the failure # NOTE - this doesn't currently work if the PR is coming from a fork, due to limitations in GitHub actions secrets @@ -42,4 +42,3 @@ jobs: Thanks again for your contribution! repo-token: ${{ secrets.GITHUB_TOKEN }} allow-repeats: false -# diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4e0a928..832e83dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,5 +48,3 @@ jobs: # Remember that you can parallelise this by using strategy.matrix run: | nextflow run ${GITHUB_WORKSPACE} -profile test,docker --outdir ./results - -# diff --git a/.github/workflows/fix-linting.yml b/.github/workflows/fix-linting.yml new file mode 100644 index 00000000..05f28000 --- /dev/null +++ b/.github/workflows/fix-linting.yml @@ -0,0 +1,55 @@ +name: Fix linting from a comment +on: + issue_comment: + types: [created] + +jobs: + deploy: + # Only run if comment is on a PR with the main repo, and if it contains the magic keywords + if: > + contains(github.event.comment.html_url, '/pull/') && + contains(github.event.comment.body, '@nf-core-bot fix linting') && + github.repository == 'nf-core/bacass' + runs-on: ubuntu-latest + steps: + # Use the @nf-core-bot token to check out so we can push later + - uses: actions/checkout@v3 + with: + token: ${{ secrets.nf_core_bot_auth_token }} + + # Action runs on the issue comment, so we don't get the PR by default + # Use the gh cli to check out the PR + - name: Checkout Pull Request + run: gh pr checkout ${{ github.event.issue.number }} + env: + GITHUB_TOKEN: ${{ secrets.nf_core_bot_auth_token }} + + - uses: actions/setup-node@v2 + + - name: Install Prettier + run: npm install -g prettier @prettier/plugin-php + + # Check that we actually need to fix something + - name: Run 'prettier --check' + id: prettier_status + run: | + if prettier --check ${GITHUB_WORKSPACE}; then + echo "::set-output name=result::pass" + else + echo "::set-output name=result::fail" + fi + + - name: Run 'prettier --write' + if: steps.prettier_status.outputs.result == 'fail' + run: prettier --write ${GITHUB_WORKSPACE} + + - name: Commit & push changes + if: steps.prettier_status.outputs.result == 'fail' + run: | + git config user.email "core@nf-co.re" + git config user.name "nf-core-bot" + git config push.default upstream + git add . + git status + git commit -m "[automated] Fix linting with Prettier" + git push diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index e9cf5de3..77358dee 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -48,7 +48,7 @@ jobs: wget -qO- get.nextflow.io | bash sudo mv nextflow /usr/local/bin/ - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v3 with: python-version: "3.6" architecture: "x64" @@ -78,5 +78,3 @@ jobs: lint_log.txt lint_results.md PR_number.txt - -# diff --git a/.github/workflows/linting_comment.yml b/.github/workflows/linting_comment.yml index 91c487a1..04758f61 100644 --- a/.github/workflows/linting_comment.yml +++ b/.github/workflows/linting_comment.yml @@ -26,4 +26,3 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} number: ${{ steps.pr_number.outputs.pr_number }} path: linting-logs/lint_results.md -# diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..d0e7ae58 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,9 @@ +email_template.html +.nextflow* +work/ +data/ +results/ +.DS_Store +testing/ +testing* +*.pyc diff --git a/README.md b/README.md index eccd8cf9..c066af2d 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,19 @@ -# ![nf-core/bacass](docs/images/nf-core/bacass_logo_light.png#gh-light-mode-only) ![nf-core/bacass](docs/images/nf-core/bacass_logo_dark.png#gh-dark-mode-only) +# ![nf-core/bacass](docs/images/nf-core-bacass_logo_light.png#gh-light-mode-only) ![nf-core/bacass](docs/images/nf-core-bacass_logo_dark.png#gh-dark-mode-only) [![GitHub Actions CI Status](https://github.com/nf-core/bacass/workflows/nf-core%20CI/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+CI%22) [![GitHub Actions Linting Status](https://github.com/nf-core/bacass/workflows/nf-core%20linting/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+linting%22) -[![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?labelColor=000000&logo=Amazon%20AWS)](https://nf-co.re/bacass/results) -[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8?labelColor=000000)](https://doi.org/10.5281/zenodo.XXXXXXX) - -[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.10.3-23aa62.svg?labelColor=000000)](https://www.nextflow.io/) -[![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?labelColor=000000&logo=anaconda)](https://docs.conda.io/en/latest/) -[![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?labelColor=000000&logo=docker)](https://www.docker.com/) -[![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) - -[![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23bacass-4A154B?labelColor=000000&logo=slack)](https://nfcore.slack.com/channels/bacass) -[![Follow on Twitter](http://img.shields.io/badge/twitter-%40nf__core-1DA1F2?labelColor=000000&logo=twitter)](https://twitter.com/nf_core) -[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?labelColor=000000&logo=youtube)](https://www.youtube.com/c/nf-core) +[![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?logo=Amazon%20AWS)](https://nf-co.re/bacass/results) +[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8)](https://doi.org/10.5281/zenodo.XXXXXXX) + +[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.10.3-23aa62.svg)](https://www.nextflow.io/) +[![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?logo=anaconda)](https://docs.conda.io/en/latest/) +[![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?logo=docker)](https://www.docker.com/) +[![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg)](https://sylabs.io/docs/) +[![Launch on Nextflow Tower](https://img.shields.io/badge/Launch%20%F0%9F%9A%80-Nextflow%20Tower-%234256e7)](https://tower.nf/launch?pipeline=https://github.com/nf-core/bacass) + +[![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23bacass-4A154B?logo=slack)](https://nfcore.slack.com/channels/bacass) +[![Follow on Twitter](http://img.shields.io/badge/twitter-%40nf__core-1DA1F2?logo=twitter)](https://twitter.com/nf_core) +[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?logo=youtube)](https://www.youtube.com/c/nf-core) ## Introduction diff --git a/assets/email_template.html b/assets/email_template.html index 49c7405c..ebf8e7a3 100644 --- a/assets/email_template.html +++ b/assets/email_template.html @@ -1,111 +1,53 @@ - - - - + + + + - - - nf-core/bacass Pipeline Report - - -
- + + nf-core/bacass Pipeline Report + + +
-

nf-core/bacass v${version}

-

Run Name: $runName

+ - <% if (!success){ out << """ -
-

nf-core/bacass execution completed unsuccessfully!

+

nf-core/bacass v${version}

+

Run Name: $runName

+ +<% if (!success){ + out << """ +
+

nf-core/bacass execution completed unsuccessfully!

The exit status of the task that caused the workflow execution to fail was: $exitStatus.

The full error message was:

-
${errorReport}
-
- """ } else { out << """ -
+
${errorReport}
+
+ """ +} else { + out << """ +
nf-core/bacass execution completed successfully! -
- """ } %> +
+ """ +} +%> -

The workflow was completed at $dateComplete (duration: $duration)

-

The command used to launch the workflow was as follows:

-
-$commandLine
+

The workflow was completed at $dateComplete (duration: $duration)

+

The command used to launch the workflow was as follows:

+
$commandLine
-

Pipeline Configuration:

- - - <% out << summary.collect{ k,v -> " - - - - - " }.join("\n") %> - -
- $k - -
$v
-
+

Pipeline Configuration:

+ + + <% out << summary.collect{ k,v -> "" }.join("\n") %> + +
$k
$v
-

nf-core/bacass

-

https://github.com/nf-core/bacass

-
- +

nf-core/bacass

+

https://github.com/nf-core/bacass

+ +
+ + diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py index 5473b624..3652c63c 100755 --- a/bin/check_samplesheet.py +++ b/bin/check_samplesheet.py @@ -98,7 +98,7 @@ def _validate_pair(self, row): if row[self._first_col] and row[self._second_col]: row[self._single_col] = False assert ( - Path(row[self._first_col]).suffixes == Path(row[self._second_col]).suffixes + Path(row[self._first_col]).suffixes[-2:] == Path(row[self._second_col]).suffixes[-2:] ), "FASTQ pairs must have the same file extensions." else: row[self._single_col] = True @@ -129,6 +129,16 @@ def validate_unique_samples(self): row[self._sample_col] = f"{sample}_T{seen[sample]}" +def read_head(handle, num_lines=10): + """Read the specified number of lines from the current position in the file.""" + lines = [] + for idx, line in enumerate(handle): + if idx == num_lines: + break + lines.append(line) + return "".join(lines) + + def sniff_format(handle): """ Detect the tabular format. @@ -144,13 +154,13 @@ def sniff_format(handle): https://docs.python.org/3/glossary.html#term-text-file """ - peek = handle.read(2048) + peek = read_head(handle) + handle.seek(0) sniffer = csv.Sniffer() if not sniffer.has_header(peek): logger.critical(f"The given sample sheet does not appear to contain a header.") sys.exit(1) dialect = sniffer.sniff(peek) - handle.seek(0) return dialect diff --git a/nextflow.config b/nextflow.config index dccfc2ba..1d01e4e8 100644 --- a/nextflow.config +++ b/nextflow.config @@ -159,7 +159,7 @@ trace { } dag { enabled = true - file = "${params.tracedir}/pipeline_dag_${trace_timestamp}.svg" + file = "${params.tracedir}/pipeline_dag_${trace_timestamp}.html" } manifest { From 2c8a2a72a349eab41d037a9a5262c9eeb1dc4898 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Tue, 30 Aug 2022 13:31:14 +0000 Subject: [PATCH 06/21] Template update for nf-core/tools version 2.5 --- .editorconfig | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 3 +- .github/workflows/ci.yml | 23 ++------ .github/workflows/linting.yml | 38 +++++++++++-- CITATION.cff | 56 +++++++++++++++++++ README.md | 21 +++---- assets/email_template.txt | 1 - bin/check_samplesheet.py | 41 +++++++------- conf/base.config | 5 ++ docs/usage.md | 12 ++-- lib/WorkflowBacass.groovy | 5 +- lib/WorkflowMain.groovy | 9 ++- main.nf | 2 +- modules.json | 22 +++++--- .../templates/dumpsoftwareversions.py | 14 +++-- nextflow.config | 21 ++++++- 16 files changed, 184 insertions(+), 91 deletions(-) create mode 100644 CITATION.cff diff --git a/.editorconfig b/.editorconfig index b6b31907..b78de6e6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,7 +8,7 @@ trim_trailing_whitespace = true indent_size = 4 indent_style = space -[*.{md,yml,yaml,html,css,scss,js}] +[*.{md,yml,yaml,html,css,scss,js,cff}] indent_size = 2 # These files are edited and tested upstream in nf-core/modules diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 47ed4c45..0c7eab4a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -15,8 +15,7 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/baca - [ ] This comment contains a description of changes (with reason). - [ ] If you've fixed a bug or added code that should be tested, add tests! - - [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md) - - [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. +- [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md)- [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. - [ ] Make sure your code lints (`nf-core lint`). - [ ] Ensure the test suite passes (`nextflow run . -profile test,docker --outdir `). - [ ] Usage Documentation in `docs/usage.md` is updated. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 832e83dc..a880e241 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,6 @@ on: env: NXF_ANSI_LOG: false - CAPSULE_LOG: none jobs: test: @@ -20,27 +19,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # Nextflow versions - include: - # Test pipeline minimum Nextflow version - - NXF_VER: "21.10.3" - NXF_EDGE: "" - # Test latest edge release of Nextflow - - NXF_VER: "" - NXF_EDGE: "1" + NXF_VER: + - "21.10.3" + - "latest-everything" steps: - name: Check out pipeline code uses: actions/checkout@v2 - name: Install Nextflow - env: - NXF_VER: ${{ matrix.NXF_VER }} - # Uncomment only if the edge release is more recent than the latest stable release - # See https://github.com/nextflow-io/nextflow/issues/2467 - # NXF_EDGE: ${{ matrix.NXF_EDGE }} - run: | - wget -qO- get.nextflow.io | bash - sudo mv nextflow /usr/local/bin/ + uses: nf-core/setup-nextflow@v1 + with: + version: "${{ matrix.NXF_VER }}" - name: Run pipeline with test data # TODO nf-core: You can customise CI pipeline run tests as required diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 77358dee..8a5ce69b 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -35,6 +35,36 @@ jobs: - name: Run Prettier --check run: prettier --check ${GITHUB_WORKSPACE} + PythonBlack: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Check code lints with Black + uses: psf/black@stable + + # If the above check failed, post a comment on the PR explaining the failure + - name: Post PR comment + if: failure() + uses: mshick/add-pr-comment@v1 + with: + message: | + ## Python linting (`black`) is failing + + To keep the code consistent with lots of contributors, we run automated code consistency checks. + To fix this CI test, please run: + + * Install [`black`](https://black.readthedocs.io/en/stable/): `pip install black` + * Fix formatting errors in your pipeline: `black .` + + Once you push these changes the test should pass, and you can hide this comment :+1: + + We highly recommend setting up Black in your code editor so that this formatting is done automatically on save. Ask about it on Slack for help! + + Thanks again for your contribution! + repo-token: ${{ secrets.GITHUB_TOKEN }} + allow-repeats: false + nf-core: runs-on: ubuntu-latest steps: @@ -42,15 +72,11 @@ jobs: uses: actions/checkout@v2 - name: Install Nextflow - env: - CAPSULE_LOG: none - run: | - wget -qO- get.nextflow.io | bash - sudo mv nextflow /usr/local/bin/ + uses: nf-core/setup-nextflow@v1 - uses: actions/setup-python@v3 with: - python-version: "3.6" + python-version: "3.7" architecture: "x64" - name: Install dependencies diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 00000000..4533e2f2 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,56 @@ +cff-version: 1.2.0 +message: "If you use `nf-core tools` in your work, please cite the `nf-core` publication" +authors: + - family-names: Ewels + given-names: Philip + - family-names: Peltzer + given-names: Alexander + - family-names: Fillinger + given-names: Sven + - family-names: Patel + given-names: Harshil + - family-names: Alneberg + given-names: Johannes + - family-names: Wilm + given-names: Andreas + - family-names: Ulysse Garcia + given-names: Maxime + - family-names: Di Tommaso + given-names: Paolo + - family-names: Nahnsen + given-names: Sven +title: "The nf-core framework for community-curated bioinformatics pipelines." +version: 2.4.1 +doi: 10.1038/s41587-020-0439-x +date-released: 2022-05-16 +url: https://github.com/nf-core/tools +prefered-citation: + type: article + authors: + - family-names: Ewels + given-names: Philip + - family-names: Peltzer + given-names: Alexander + - family-names: Fillinger + given-names: Sven + - family-names: Patel + given-names: Harshil + - family-names: Alneberg + given-names: Johannes + - family-names: Wilm + given-names: Andreas + - family-names: Ulysse Garcia + given-names: Maxime + - family-names: Di Tommaso + given-names: Paolo + - family-names: Nahnsen + given-names: Sven + doi: 10.1038/s41587-020-0439-x + journal: nature biotechnology + start: 276 + end: 278 + title: "The nf-core framework for community-curated bioinformatics pipelines." + issue: 3 + volume: 38 + year: 2020 + url: https://dx.doi.org/10.1038/s41587-020-0439-x diff --git a/README.md b/README.md index c066af2d..ddd4f49a 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,14 @@ # ![nf-core/bacass](docs/images/nf-core-bacass_logo_light.png#gh-light-mode-only) ![nf-core/bacass](docs/images/nf-core-bacass_logo_dark.png#gh-dark-mode-only) -[![GitHub Actions CI Status](https://github.com/nf-core/bacass/workflows/nf-core%20CI/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+CI%22) -[![GitHub Actions Linting Status](https://github.com/nf-core/bacass/workflows/nf-core%20linting/badge.svg)](https://github.com/nf-core/bacass/actions?query=workflow%3A%22nf-core+linting%22) -[![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?logo=Amazon%20AWS)](https://nf-co.re/bacass/results) -[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8)](https://doi.org/10.5281/zenodo.XXXXXXX) +[![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?labelColor=000000&logo=Amazon%20AWS)](https://nf-co.re/bacass/results)[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8?labelColor=000000)](https://doi.org/10.5281/zenodo.XXXXXXX) [![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.10.3-23aa62.svg)](https://www.nextflow.io/) -[![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?logo=anaconda)](https://docs.conda.io/en/latest/) -[![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?logo=docker)](https://www.docker.com/) -[![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg)](https://sylabs.io/docs/) +[![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?labelColor=000000&logo=anaconda)](https://docs.conda.io/en/latest/) +[![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?labelColor=000000&logo=docker)](https://www.docker.com/) +[![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) [![Launch on Nextflow Tower](https://img.shields.io/badge/Launch%20%F0%9F%9A%80-Nextflow%20Tower-%234256e7)](https://tower.nf/launch?pipeline=https://github.com/nf-core/bacass) -[![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23bacass-4A154B?logo=slack)](https://nfcore.slack.com/channels/bacass) -[![Follow on Twitter](http://img.shields.io/badge/twitter-%40nf__core-1DA1F2?logo=twitter)](https://twitter.com/nf_core) -[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?logo=youtube)](https://www.youtube.com/c/nf-core) +[![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23bacass-4A154B?labelColor=000000&logo=slack)](https://nfcore.slack.com/channels/bacass)[![Follow on Twitter](http://img.shields.io/badge/twitter-%40nf__core-1DA1F2?labelColor=000000&logo=twitter)](https://twitter.com/nf_core)[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?labelColor=000000&logo=youtube)](https://www.youtube.com/c/nf-core) ## Introduction @@ -25,7 +20,7 @@ The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool -On release, automated continuous integration tests run the pipeline on a full-sized dataset on the AWS cloud infrastructure. This ensures that the pipeline runs on AWS, has sensible resource allocation defaults set to run on real-world datasets, and permits the persistent storage of results to benchmark between pipeline releases and other analysis sources. The results obtained from the full-sized test can be viewed on the [nf-core website](https://nf-co.re/bacass/results). +On release, automated continuous integration tests run the pipeline on a full-sized dataset on the AWS cloud infrastructure. This ensures that the pipeline runs on AWS, has sensible resource allocation defaults set to run on real-world datasets, and permits the persistent storage of results to benchmark between pipeline releases and other analysis sources.The results obtained from the full-sized test can be viewed on the [nf-core website](https://nf-co.re/bacass/results). ## Pipeline summary @@ -42,7 +37,7 @@ On release, automated continuous integration tests run the pipeline on a full-si 3. Download the pipeline and test it on a minimal dataset with a single command: - ```console + ```bash nextflow run nf-core/bacass -profile test,YOURPROFILE --outdir ``` @@ -57,7 +52,7 @@ On release, automated continuous integration tests run the pipeline on a full-si - ```console + ```bash nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile ``` diff --git a/assets/email_template.txt b/assets/email_template.txt index ae71982d..6b645199 100644 --- a/assets/email_template.txt +++ b/assets/email_template.txt @@ -6,7 +6,6 @@ `._,._,' nf-core/bacass v${version} ---------------------------------------------------- - Run Name: $runName <% if (success){ diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py index 3652c63c..9a8b8962 100755 --- a/bin/check_samplesheet.py +++ b/bin/check_samplesheet.py @@ -11,7 +11,6 @@ from collections import Counter from pathlib import Path - logger = logging.getLogger() @@ -79,13 +78,15 @@ def validate_and_transform(self, row): def _validate_sample(self, row): """Assert that the sample name exists and convert spaces to underscores.""" - assert len(row[self._sample_col]) > 0, "Sample input is required." + if len(row[self._sample_col]) <= 0: + raise AssertionError("Sample input is required.") # Sanitize samples slightly. row[self._sample_col] = row[self._sample_col].replace(" ", "_") def _validate_first(self, row): """Assert that the first FASTQ entry is non-empty and has the right format.""" - assert len(row[self._first_col]) > 0, "At least the first FASTQ file is required." + if len(row[self._first_col]) <= 0: + raise AssertionError("At least the first FASTQ file is required.") self._validate_fastq_format(row[self._first_col]) def _validate_second(self, row): @@ -97,36 +98,34 @@ def _validate_pair(self, row): """Assert that read pairs have the same file extension. Report pair status.""" if row[self._first_col] and row[self._second_col]: row[self._single_col] = False - assert ( - Path(row[self._first_col]).suffixes[-2:] == Path(row[self._second_col]).suffixes[-2:] - ), "FASTQ pairs must have the same file extensions." + if Path(row[self._first_col]).suffixes[-2:] != Path(row[self._second_col]).suffixes[-2:]: + raise AssertionError("FASTQ pairs must have the same file extensions.") else: row[self._single_col] = True def _validate_fastq_format(self, filename): """Assert that a given filename has one of the expected FASTQ extensions.""" - assert any(filename.endswith(extension) for extension in self.VALID_FORMATS), ( - f"The FASTQ file has an unrecognized extension: {filename}\n" - f"It should be one of: {', '.join(self.VALID_FORMATS)}" - ) + if not any(filename.endswith(extension) for extension in self.VALID_FORMATS): + raise AssertionError( + f"The FASTQ file has an unrecognized extension: {filename}\n" + f"It should be one of: {', '.join(self.VALID_FORMATS)}" + ) def validate_unique_samples(self): """ Assert that the combination of sample name and FASTQ filename is unique. - In addition to the validation, also rename the sample if more than one sample, - FASTQ file combination exists. + In addition to the validation, also rename all samples to have a suffix of _T{n}, where n is the + number of times the same sample exist, but with different FASTQ files, e.g., multiple runs per experiment. """ - assert len(self._seen) == len(self.modified), "The pair of sample name and FASTQ must be unique." - if len({pair[0] for pair in self._seen}) < len(self._seen): - counts = Counter(pair[0] for pair in self._seen) - seen = Counter() - for row in self.modified: - sample = row[self._sample_col] - seen[sample] += 1 - if counts[sample] > 1: - row[self._sample_col] = f"{sample}_T{seen[sample]}" + if len(self._seen) != len(self.modified): + raise AssertionError("The pair of sample name and FASTQ must be unique.") + seen = Counter() + for row in self.modified: + sample = row[self._sample_col] + seen[sample] += 1 + row[self._sample_col] = f"{sample}_T{seen[sample]}" def read_head(handle, num_lines=10): diff --git a/conf/base.config b/conf/base.config index fb20f020..afca6212 100644 --- a/conf/base.config +++ b/conf/base.config @@ -26,6 +26,11 @@ process { // adding in your local modules too. // TODO nf-core: Customise requirements for specific processes. // See https://www.nextflow.io/docs/latest/config.html#config-process-selectors + withLabel:process_single { + cpus = { check_max( 1 , 'cpus' ) } + memory = { check_max( 6.GB * task.attempt, 'memory' ) } + time = { check_max( 4.h * task.attempt, 'time' ) } + } withLabel:process_low { cpus = { check_max( 2 * task.attempt, 'cpus' ) } memory = { check_max( 12.GB * task.attempt, 'memory' ) } diff --git a/docs/usage.md b/docs/usage.md index a3982540..4ae024f7 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -12,7 +12,7 @@ You will need to create a samplesheet with information about the samples you would like to analyse before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row as shown in the examples below. -```console +```bash --input '[path to samplesheet file]' ``` @@ -56,7 +56,7 @@ An [example samplesheet](../assets/samplesheet.csv) has been provided with the p The typical command for running the pipeline is as follows: -```console +```bash nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile docker ``` @@ -64,9 +64,9 @@ This will launch the pipeline with the `docker` configuration profile. See below Note that the pipeline will create the following files in your working directory: -```console +```bash work # Directory containing the nextflow working files - # Finished results in specified location (defined with --outdir) + # Finished results in specified location (defined with --outdir) .nextflow_log # Log file from Nextflow # Other nextflow hidden files, eg. history of pipeline runs and old logs. ``` @@ -75,7 +75,7 @@ work # Directory containing the nextflow working files When you run the above command, Nextflow automatically pulls the pipeline code from GitHub and stores it as a cached version. When running the pipeline after this, it will always use the cached version if available - even if the pipeline has been updated since. To make sure that you're running the latest version of the pipeline, make sure that you regularly update the cached version of the pipeline: -```console +```bash nextflow pull nf-core/bacass ``` @@ -251,6 +251,6 @@ Some HPC setups also allow you to run nextflow within a cluster job submitted yo In some cases, the Nextflow Java virtual machines can start to request a large amount of memory. We recommend adding the following line to your environment to limit this (typically in `~/.bashrc` or `~./bash_profile`): -```console +```bash NXF_OPTS='-Xms1g -Xmx4g' ``` diff --git a/lib/WorkflowBacass.groovy b/lib/WorkflowBacass.groovy index aa100683..8d85cef7 100755 --- a/lib/WorkflowBacass.groovy +++ b/lib/WorkflowBacass.groovy @@ -10,6 +10,7 @@ class WorkflowBacass { public static void initialise(params, log) { genomeExistsError(params, log) + if (!params.fasta) { log.error "Genome fasta file not specified with e.g. '--fasta genome.fa' or via a detectable config file." System.exit(1) @@ -41,9 +42,7 @@ class WorkflowBacass { yaml_file_text += "data: |\n" yaml_file_text += "${summary_section}" return yaml_file_text - } - - // + }// // Exit pipeline if incorrect --genome key provided // private static void genomeExistsError(params, log) { diff --git a/lib/WorkflowMain.groovy b/lib/WorkflowMain.groovy index 2db15275..8379896f 100755 --- a/lib/WorkflowMain.groovy +++ b/lib/WorkflowMain.groovy @@ -59,6 +59,7 @@ class WorkflowMain { } // Print parameter summary log to screen + log.info paramsSummaryLog(workflow, params, log) // Check that a -profile or Nextflow config has been provided to run the pipeline @@ -78,17 +79,15 @@ class WorkflowMain { System.exit(1) } } - // // Get attribute from genome config file e.g. fasta // - public static String getGenomeAttribute(params, attribute) { - def val = '' + public static Object getGenomeAttribute(params, attribute) { if (params.genomes && params.genome && params.genomes.containsKey(params.genome)) { if (params.genomes[ params.genome ].containsKey(attribute)) { - val = params.genomes[ params.genome ][ attribute ] + return params.genomes[ params.genome ][ attribute ] } } - return val + return null } } diff --git a/main.nf b/main.nf index 6b776dd9..484504a7 100644 --- a/main.nf +++ b/main.nf @@ -4,7 +4,7 @@ nf-core/bacass ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Github : https://github.com/nf-core/bacass - Website: https://nf-co.re/bacass +Website: https://nf-co.re/bacass Slack : https://nfcore.slack.com/channels/bacass ---------------------------------------------------------------------------------------- */ diff --git a/modules.json b/modules.json index 91697355..15e1238a 100644 --- a/modules.json +++ b/modules.json @@ -3,14 +3,20 @@ "homePage": "https://github.com/nf-core/bacass", "repos": { "nf-core/modules": { - "custom/dumpsoftwareversions": { - "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d" - }, - "fastqc": { - "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d" - }, - "multiqc": { - "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d" + "git_url": "https://github.com/nf-core/modules.git", + "modules": { + "custom/dumpsoftwareversions": { + "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d", + "branch": "master" + }, + "fastqc": { + "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d", + "branch": "master" + }, + "multiqc": { + "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d", + "branch": "master" + } } } } diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py b/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py index d1390392..787bdb7b 100644 --- a/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py +++ b/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py @@ -1,9 +1,10 @@ #!/usr/bin/env python -import yaml import platform from textwrap import dedent +import yaml + def _make_versions_html(versions): html = [ @@ -58,11 +59,12 @@ def _make_versions_html(versions): for process, process_versions in versions_by_process.items(): module = process.split(":")[-1] try: - assert versions_by_module[module] == process_versions, ( - "We assume that software versions are the same between all modules. " - "If you see this error-message it means you discovered an edge-case " - "and should open an issue in nf-core/tools. " - ) + if versions_by_module[module] != process_versions: + raise AssertionError( + "We assume that software versions are the same between all modules. " + "If you see this error-message it means you discovered an edge-case " + "and should open an issue in nf-core/tools. " + ) except KeyError: versions_by_module[module] = process_versions diff --git a/nextflow.config b/nextflow.config index 1d01e4e8..6d6bf3b8 100644 --- a/nextflow.config +++ b/nextflow.config @@ -13,11 +13,11 @@ params { // Input options input = null + // References genome = null igenomes_base = 's3://ngi-igenomes/igenomes' igenomes_ignore = false - // MultiQC options multiqc_config = null multiqc_title = null @@ -37,6 +37,7 @@ params { schema_ignore_params = 'genomes' enable_conda = false + // Config options custom_config_version = 'master' custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}" @@ -45,6 +46,7 @@ params { config_profile_url = null config_profile_name = null + // Max resource options // Defaults only, expecting to be overwritten max_memory = '128.GB' @@ -72,6 +74,7 @@ try { // } + profiles { debug { process.beforeScript = 'echo $HOSTNAME' } conda { @@ -82,6 +85,15 @@ profiles { shifter.enabled = false charliecloud.enabled = false } + mamba { + params.enable_conda = true + conda.useMamba = true + docker.enabled = false + singularity.enabled = false + podman.enabled = false + shifter.enabled = false + charliecloud.enabled = false + } docker { docker.enabled = true docker.userEmulation = true @@ -119,10 +131,16 @@ profiles { podman.enabled = false shifter.enabled = false } + gitpod { + executor.name = 'local' + executor.cpus = 16 + executor.memory = 60.GB + } test { includeConfig 'conf/test.config' } test_full { includeConfig 'conf/test_full.config' } } + // Load igenomes.config if required if (!params.igenomes_ignore) { includeConfig 'conf/igenomes.config' @@ -130,6 +148,7 @@ if (!params.igenomes_ignore) { params.genomes = [:] } + // Export these variables to prevent local Python/R libraries from conflicting with those in the container // The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container. // See https://apeltzer.github.io/post/03-julia-lang-nextflow/ for details on that. Once we have a common agreement on where to keep Julia packages, this is adjustable. From 8d72268a8221886ae0dcc841de2f74b9bca4b51a Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Thu, 1 Sep 2022 13:23:23 +0000 Subject: [PATCH 07/21] Template update for nf-core/tools version 2.5.1 --- bin/check_samplesheet.py | 9 ++++++--- pyproject.toml | 10 ++++++++++ 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 pyproject.toml diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py index 9a8b8962..11b15572 100755 --- a/bin/check_samplesheet.py +++ b/bin/check_samplesheet.py @@ -98,7 +98,9 @@ def _validate_pair(self, row): """Assert that read pairs have the same file extension. Report pair status.""" if row[self._first_col] and row[self._second_col]: row[self._single_col] = False - if Path(row[self._first_col]).suffixes[-2:] != Path(row[self._second_col]).suffixes[-2:]: + first_col_suffix = Path(row[self._first_col]).suffixes[-2:] + second_col_suffix = Path(row[self._second_col]).suffixes[-2:] + if first_col_suffix != second_col_suffix: raise AssertionError("FASTQ pairs must have the same file extensions.") else: row[self._single_col] = True @@ -157,7 +159,7 @@ def sniff_format(handle): handle.seek(0) sniffer = csv.Sniffer() if not sniffer.has_header(peek): - logger.critical(f"The given sample sheet does not appear to contain a header.") + logger.critical("The given sample sheet does not appear to contain a header.") sys.exit(1) dialect = sniffer.sniff(peek) return dialect @@ -195,7 +197,8 @@ def check_samplesheet(file_in, file_out): reader = csv.DictReader(in_handle, dialect=sniff_format(in_handle)) # Validate the existence of the expected header columns. if not required_columns.issubset(reader.fieldnames): - logger.critical(f"The sample sheet **must** contain the column headers: {', '.join(required_columns)}.") + req_cols = ", ".join(required_columns) + logger.critical(f"The sample sheet **must** contain these column headers: {req_cols}.") sys.exit(1) # Validate each row. checker = RowChecker() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..0d62beb6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,10 @@ +# Config file for Python. Mostly used to configure linting of bin/check_samplesheet.py with Black. +# Should be kept the same as nf-core/tools to avoid fighting with template synchronisation. +[tool.black] +line-length = 120 +target_version = ["py37", "py38", "py39", "py310"] + +[tool.isort] +profile = "black" +known_first_party = ["nf_core"] +multi_line_output = 3 From 152aed32434ed606b3ea3c030df7a1102abf25c3 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Tue, 4 Oct 2022 21:53:01 +0000 Subject: [PATCH 08/21] Template update for nf-core/tools version 2.6 --- .github/workflows/awsfulltest.yml | 4 ++ .github/workflows/awstest.yml | 4 ++ .prettierignore | 1 + CITATION.cff | 8 +-- assets/adaptivecard.json | 67 +++++++++++++++++++ assets/methods_description_template.yml | 25 +++++++ assets/multiqc_config.yml | 6 +- docs/usage.md | 8 +++ lib/NfcoreTemplate.groovy | 55 +++++++++++++++ lib/Utils.groovy | 21 ++++-- lib/WorkflowBacass.groovy | 19 ++++++ main.nf | 3 +- modules.json | 27 ++++---- .../custom/dumpsoftwareversions/main.nf | 8 +-- .../custom/dumpsoftwareversions/meta.yml | 0 .../templates/dumpsoftwareversions.py | 0 modules/nf-core/{modules => }/fastqc/main.nf | 12 ++++ modules/nf-core/{modules => }/fastqc/meta.yml | 0 modules/nf-core/modules/multiqc/main.nf | 31 --------- modules/nf-core/multiqc/main.nf | 53 +++++++++++++++ .../nf-core/{modules => }/multiqc/meta.yml | 15 +++++ nextflow.config | 5 +- nextflow_schema.json | 18 +++++ workflows/bacass.nf | 26 ++++--- 24 files changed, 345 insertions(+), 71 deletions(-) create mode 100644 assets/adaptivecard.json create mode 100644 assets/methods_description_template.yml mode change 100755 => 100644 lib/Utils.groovy rename modules/nf-core/{modules => }/custom/dumpsoftwareversions/main.nf (79%) rename modules/nf-core/{modules => }/custom/dumpsoftwareversions/meta.yml (100%) rename modules/nf-core/{modules => }/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py (100%) rename modules/nf-core/{modules => }/fastqc/main.nf (85%) rename modules/nf-core/{modules => }/fastqc/meta.yml (100%) delete mode 100644 modules/nf-core/modules/multiqc/main.nf create mode 100644 modules/nf-core/multiqc/main.nf rename modules/nf-core/{modules => }/multiqc/meta.yml (73%) diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index 9e5c20c8..0e1f0216 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -28,3 +28,7 @@ jobs: "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-${{ github.sha }}" } profiles: test_full,aws_tower + - uses: actions/upload-artifact@v3 + with: + name: Tower debug log file + path: tower_action_*.log diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index 22683509..5ad2d9b0 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -23,3 +23,7 @@ jobs: "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-test-${{ github.sha }}" } profiles: test,aws_tower + - uses: actions/upload-artifact@v3 + with: + name: Tower debug log file + path: tower_action_*.log diff --git a/.prettierignore b/.prettierignore index d0e7ae58..eb74a574 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,5 @@ email_template.html +adaptivecard.json .nextflow* work/ data/ diff --git a/CITATION.cff b/CITATION.cff index 4533e2f2..017666c0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -13,8 +13,8 @@ authors: given-names: Johannes - family-names: Wilm given-names: Andreas - - family-names: Ulysse Garcia - given-names: Maxime + - family-names: Garcia + given-names: Maxime Ulysse - family-names: Di Tommaso given-names: Paolo - family-names: Nahnsen @@ -39,8 +39,8 @@ prefered-citation: given-names: Johannes - family-names: Wilm given-names: Andreas - - family-names: Ulysse Garcia - given-names: Maxime + - family-names: Garcia + given-names: Maxime Ulysse - family-names: Di Tommaso given-names: Paolo - family-names: Nahnsen diff --git a/assets/adaptivecard.json b/assets/adaptivecard.json new file mode 100644 index 00000000..52b0afd4 --- /dev/null +++ b/assets/adaptivecard.json @@ -0,0 +1,67 @@ +{ + "type": "message", + "attachments": [ + { + "contentType": "application/vnd.microsoft.card.adaptive", + "contentUrl": null, + "content": { + "\$schema": "http://adaptivecards.io/schemas/adaptive-card.json", + "msteams": { + "width": "Full" + }, + "type": "AdaptiveCard", + "version": "1.2", + "body": [ + { + "type": "TextBlock", + "size": "Large", + "weight": "Bolder", + "color": "<% if (success) { %>Good<% } else { %>Attention<%} %>", + "text": "nf-core/bacass v${version} - ${runName}", + "wrap": true + }, + { + "type": "TextBlock", + "spacing": "None", + "text": "Completed at ${dateComplete} (duration: ${duration})", + "isSubtle": true, + "wrap": true + }, + { + "type": "TextBlock", + "text": "<% if (success) { %>Pipeline completed successfully!<% } else { %>Pipeline completed with errors. The full error message was: ${errorReport}.<% } %>", + "wrap": true + }, + { + "type": "TextBlock", + "text": "The command used to launch the workflow was as follows:", + "wrap": true + }, + { + "type": "TextBlock", + "text": "${commandLine}", + "isSubtle": true, + "wrap": true + } + ], + "actions": [ + { + "type": "Action.ShowCard", + "title": "Pipeline Configuration", + "card": { + "type": "AdaptiveCard", + "\$schema": "http://adaptivecards.io/schemas/adaptive-card.json", + "body": [ + { + "type": "FactSet", + "facts": [<% out << summary.collect{ k,v -> "{\"title\": \"$k\", \"value\" : \"$v\"}"}.join(",\n") %> + ] + } + ] + } + } + ] + } + } + ] +} diff --git a/assets/methods_description_template.yml b/assets/methods_description_template.yml new file mode 100644 index 00000000..a19f3abb --- /dev/null +++ b/assets/methods_description_template.yml @@ -0,0 +1,25 @@ +id: "nf-core-bacass-methods-description" +description: "Suggested text and references to use when describing pipeline usage within the methods section of a publication." +section_name: "nf-core/bacass Methods Description" +section_href: "https://github.com/nf-core/bacass" +plot_type: "html" +## TODO nf-core: Update the HTML below to your prefered methods description, e.g. add publication citation for this pipeline +## You inject any metadata in the Nextflow '${workflow}' object +data: | +

Methods

+

Data was processed using nf-core/bacass v${workflow.manifest.version} ${doi_text} of the nf-core collection of workflows (Ewels et al., 2020).

+

The pipeline was executed with Nextflow v${workflow.nextflow.version} (Di Tommaso et al., 2017) with the following command:

+
${workflow.commandLine}
+

References

+
    +
  • Di Tommaso, P., Chatzou, M., Floden, E. W., Barja, P. P., Palumbo, E., & Notredame, C. (2017). Nextflow enables reproducible computational workflows. Nature Biotechnology, 35(4), 316-319. https://doi.org/10.1038/nbt.3820
  • +
  • Ewels, P. A., Peltzer, A., Fillinger, S., Patel, H., Alneberg, J., Wilm, A., Garcia, M. U., Di Tommaso, P., & Nahnsen, S. (2020). The nf-core framework for community-curated bioinformatics pipelines. Nature Biotechnology, 38(3), 276-278. https://doi.org/10.1038/s41587-020-0439-x
  • +
+
+
Notes:
+
    + ${nodoi_text} +
  • The command above does not include parameters contained in any configs or profiles that may have been used. Ensure the config file is also uploaded with your publication!
  • +
  • You should also cite all software used within this run. Check the "Software Versions" of this report to get version information.
  • +
+
diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index c16e95ab..5217b52e 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -3,9 +3,11 @@ report_comment: > analysis pipeline. For information about how to interpret these results, please see the documentation. report_section_order: - software_versions: + "nf-core-bacass-methods-description": order: -1000 - "nf-core-bacass-summary": + software_versions: order: -1001 + "nf-core-bacass-summary": + order: -1002 export_plots: true diff --git a/docs/usage.md b/docs/usage.md index 4ae024f7..dd339d43 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -237,6 +237,14 @@ See the main [Nextflow documentation](https://www.nextflow.io/docs/latest/config If you have any questions or issues please send us a message on [Slack](https://nf-co.re/join/slack) on the [`#configs` channel](https://nfcore.slack.com/channels/configs). +## Azure Resource Requests + +To be used with the `azurebatch` profile by specifying the `-profile azurebatch`. +We recommend providing a compute `params.vm_type` of `Standard_D16_v3` VMs by default but these options can be changed if required. + +Note that the choice of VM size depends on your quota and the overall workload during the analysis. +For a thorough list, please refer the [Azure Sizes for virtual machines in Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). + ## Running in the background Nextflow handles job submissions and supervises the running jobs. The Nextflow process must run until the pipeline is finished. diff --git a/lib/NfcoreTemplate.groovy b/lib/NfcoreTemplate.groovy index 2fc0a9b9..27feb009 100755 --- a/lib/NfcoreTemplate.groovy +++ b/lib/NfcoreTemplate.groovy @@ -145,6 +145,61 @@ class NfcoreTemplate { output_tf.withWriter { w -> w << email_txt } } + // + // Construct and send adaptive card + // https://adaptivecards.io + // + public static void adaptivecard(workflow, params, summary_params, projectDir, log) { + def hook_url = params.hook_url + + def summary = [:] + for (group in summary_params.keySet()) { + summary << summary_params[group] + } + + def misc_fields = [:] + misc_fields['start'] = workflow.start + misc_fields['complete'] = workflow.complete + misc_fields['scriptfile'] = workflow.scriptFile + misc_fields['scriptid'] = workflow.scriptId + if (workflow.repository) misc_fields['repository'] = workflow.repository + if (workflow.commitId) misc_fields['commitid'] = workflow.commitId + if (workflow.revision) misc_fields['revision'] = workflow.revision + misc_fields['nxf_version'] = workflow.nextflow.version + misc_fields['nxf_build'] = workflow.nextflow.build + misc_fields['nxf_timestamp'] = workflow.nextflow.timestamp + + def msg_fields = [:] + msg_fields['version'] = workflow.manifest.version + msg_fields['runName'] = workflow.runName + msg_fields['success'] = workflow.success + msg_fields['dateComplete'] = workflow.complete + msg_fields['duration'] = workflow.duration + msg_fields['exitStatus'] = workflow.exitStatus + msg_fields['errorMessage'] = (workflow.errorMessage ?: 'None') + msg_fields['errorReport'] = (workflow.errorReport ?: 'None') + msg_fields['commandLine'] = workflow.commandLine + msg_fields['projectDir'] = workflow.projectDir + msg_fields['summary'] = summary << misc_fields + + // Render the JSON template + def engine = new groovy.text.GStringTemplateEngine() + def hf = new File("$projectDir/assets/adaptivecard.json") + def json_template = engine.createTemplate(hf).make(msg_fields) + def json_message = json_template.toString() + + // POST + def post = new URL(hook_url).openConnection(); + post.setRequestMethod("POST") + post.setDoOutput(true) + post.setRequestProperty("Content-Type", "application/json") + post.getOutputStream().write(json_message.getBytes("UTF-8")); + def postRC = post.getResponseCode(); + if (! postRC.equals(200)) { + log.warn(post.getErrorStream().getText()); + } + } + // // Print pipeline summary on completion // diff --git a/lib/Utils.groovy b/lib/Utils.groovy old mode 100755 new mode 100644 index 28567bd7..8d030f4e --- a/lib/Utils.groovy +++ b/lib/Utils.groovy @@ -21,19 +21,26 @@ class Utils { } // Check that all channels are present - def required_channels = ['conda-forge', 'bioconda', 'defaults'] - def conda_check_failed = !required_channels.every { ch -> ch in channels } + // This channel list is ordered by required channel priority. + def required_channels_in_order = ['conda-forge', 'bioconda', 'defaults'] + def channels_missing = ((required_channels_in_order as Set) - (channels as Set)) as Boolean // Check that they are in the right order - conda_check_failed |= !(channels.indexOf('conda-forge') < channels.indexOf('bioconda')) - conda_check_failed |= !(channels.indexOf('bioconda') < channels.indexOf('defaults')) + def channel_priority_violation = false + def n = required_channels_in_order.size() + for (int i = 0; i < n - 1; i++) { + channel_priority_violation |= !(channels.indexOf(required_channels_in_order[i]) < channels.indexOf(required_channels_in_order[i+1])) + } - if (conda_check_failed) { + if (channels_missing | channel_priority_violation) { log.warn "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" + " There is a problem with your Conda configuration!\n\n" + " You will need to set-up the conda-forge and bioconda channels correctly.\n" + - " Please refer to https://bioconda.github.io/user/install.html#set-up-channels\n" + - " NB: The order of the channels matters!\n" + + " Please refer to https://bioconda.github.io/\n" + + " The observed channel order is \n" + + " ${channels}\n" + + " but the following channel order is required:\n" + + " ${required_channels_in_order}\n" + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" } } diff --git a/lib/WorkflowBacass.groovy b/lib/WorkflowBacass.groovy index 8d85cef7..c8f87332 100755 --- a/lib/WorkflowBacass.groovy +++ b/lib/WorkflowBacass.groovy @@ -2,6 +2,8 @@ // This file holds several functions specific to the workflow/bacass.nf in the nf-core/bacass pipeline // +import groovy.text.SimpleTemplateEngine + class WorkflowBacass { // @@ -42,6 +44,23 @@ class WorkflowBacass { yaml_file_text += "data: |\n" yaml_file_text += "${summary_section}" return yaml_file_text + } + + public static String methodsDescriptionText(run_workflow, mqc_methods_yaml) { + // Convert to a named map so can be used as with familar NXF ${workflow} variable syntax in the MultiQC YML file + def meta = [:] + meta.workflow = run_workflow.toMap() + meta["manifest_map"] = run_workflow.manifest.toMap() + + meta["doi_text"] = meta.manifest_map.doi ? "(doi: ${meta.manifest_map.doi})" : "" + meta["nodoi_text"] = meta.manifest_map.doi ? "": "
  • If available, make sure to update the text to include the Zenodo DOI of version of the pipeline used.
  • " + + def methods_text = mqc_methods_yaml.text + + def engine = new SimpleTemplateEngine() + def description_html = engine.createTemplate(methods_text).make(meta) + + return description_html }// // Exit pipeline if incorrect --genome key provided // diff --git a/main.nf b/main.nf index 484504a7..3e800210 100644 --- a/main.nf +++ b/main.nf @@ -4,7 +4,8 @@ nf-core/bacass ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Github : https://github.com/nf-core/bacass -Website: https://nf-co.re/bacass + + Website: https://nf-co.re/bacass Slack : https://nfcore.slack.com/channels/bacass ---------------------------------------------------------------------------------------- */ diff --git a/modules.json b/modules.json index 15e1238a..80d8edb7 100644 --- a/modules.json +++ b/modules.json @@ -2,20 +2,21 @@ "name": "nf-core/bacass", "homePage": "https://github.com/nf-core/bacass", "repos": { - "nf-core/modules": { - "git_url": "https://github.com/nf-core/modules.git", + "https://github.com/nf-core/modules.git": { "modules": { - "custom/dumpsoftwareversions": { - "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d", - "branch": "master" - }, - "fastqc": { - "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d", - "branch": "master" - }, - "multiqc": { - "git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d", - "branch": "master" + "nf-core": { + "custom/dumpsoftwareversions": { + "branch": "master", + "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905" + }, + "fastqc": { + "branch": "master", + "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905" + }, + "multiqc": { + "branch": "master", + "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905" + } } } } diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf b/modules/nf-core/custom/dumpsoftwareversions/main.nf similarity index 79% rename from modules/nf-core/modules/custom/dumpsoftwareversions/main.nf rename to modules/nf-core/custom/dumpsoftwareversions/main.nf index 327d5100..cebb6e05 100644 --- a/modules/nf-core/modules/custom/dumpsoftwareversions/main.nf +++ b/modules/nf-core/custom/dumpsoftwareversions/main.nf @@ -1,11 +1,11 @@ process CUSTOM_DUMPSOFTWAREVERSIONS { - label 'process_low' + label 'process_single' // Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container - conda (params.enable_conda ? "bioconda::multiqc=1.11" : null) + conda (params.enable_conda ? 'bioconda::multiqc=1.13' : null) container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/multiqc:1.11--pyhdfd78af_0' : - 'quay.io/biocontainers/multiqc:1.11--pyhdfd78af_0' }" + 'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }" input: path versions diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml b/modules/nf-core/custom/dumpsoftwareversions/meta.yml similarity index 100% rename from modules/nf-core/modules/custom/dumpsoftwareversions/meta.yml rename to modules/nf-core/custom/dumpsoftwareversions/meta.yml diff --git a/modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py b/modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py similarity index 100% rename from modules/nf-core/modules/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py rename to modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py diff --git a/modules/nf-core/modules/fastqc/main.nf b/modules/nf-core/fastqc/main.nf similarity index 85% rename from modules/nf-core/modules/fastqc/main.nf rename to modules/nf-core/fastqc/main.nf index ed6b8c50..05730368 100644 --- a/modules/nf-core/modules/fastqc/main.nf +++ b/modules/nf-core/fastqc/main.nf @@ -44,4 +44,16 @@ process FASTQC { END_VERSIONS """ } + + stub: + def prefix = task.ext.prefix ?: "${meta.id}" + """ + touch ${prefix}.html + touch ${prefix}.zip + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + fastqc: \$( fastqc --version | sed -e "s/FastQC v//g" ) + END_VERSIONS + """ } diff --git a/modules/nf-core/modules/fastqc/meta.yml b/modules/nf-core/fastqc/meta.yml similarity index 100% rename from modules/nf-core/modules/fastqc/meta.yml rename to modules/nf-core/fastqc/meta.yml diff --git a/modules/nf-core/modules/multiqc/main.nf b/modules/nf-core/modules/multiqc/main.nf deleted file mode 100644 index 1264aac1..00000000 --- a/modules/nf-core/modules/multiqc/main.nf +++ /dev/null @@ -1,31 +0,0 @@ -process MULTIQC { - label 'process_medium' - - conda (params.enable_conda ? 'bioconda::multiqc=1.12' : null) - container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/multiqc:1.12--pyhdfd78af_0' : - 'quay.io/biocontainers/multiqc:1.12--pyhdfd78af_0' }" - - input: - path multiqc_files - - output: - path "*multiqc_report.html", emit: report - path "*_data" , emit: data - path "*_plots" , optional:true, emit: plots - path "versions.yml" , emit: versions - - when: - task.ext.when == null || task.ext.when - - script: - def args = task.ext.args ?: '' - """ - multiqc -f $args . - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - multiqc: \$( multiqc --version | sed -e "s/multiqc, version //g" ) - END_VERSIONS - """ -} diff --git a/modules/nf-core/multiqc/main.nf b/modules/nf-core/multiqc/main.nf new file mode 100644 index 00000000..a8159a57 --- /dev/null +++ b/modules/nf-core/multiqc/main.nf @@ -0,0 +1,53 @@ +process MULTIQC { + label 'process_single' + + conda (params.enable_conda ? 'bioconda::multiqc=1.13' : null) + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }" + + input: + path multiqc_files, stageAs: "?/*" + path(multiqc_config) + path(extra_multiqc_config) + path(multiqc_logo) + + output: + path "*multiqc_report.html", emit: report + path "*_data" , emit: data + path "*_plots" , optional:true, emit: plots + path "versions.yml" , emit: versions + + when: + task.ext.when == null || task.ext.when + + script: + def args = task.ext.args ?: '' + def config = multiqc_config ? "--config $multiqc_config" : '' + def extra_config = extra_multiqc_config ? "--config $extra_multiqc_config" : '' + """ + multiqc \\ + --force \\ + $args \\ + $config \\ + $extra_config \\ + . + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + multiqc: \$( multiqc --version | sed -e "s/multiqc, version //g" ) + END_VERSIONS + """ + + stub: + """ + touch multiqc_data + touch multiqc_plots + touch multiqc_report.html + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + multiqc: \$( multiqc --version | sed -e "s/multiqc, version //g" ) + END_VERSIONS + """ +} diff --git a/modules/nf-core/modules/multiqc/meta.yml b/modules/nf-core/multiqc/meta.yml similarity index 73% rename from modules/nf-core/modules/multiqc/meta.yml rename to modules/nf-core/multiqc/meta.yml index 6fa891ef..ebc29b27 100644 --- a/modules/nf-core/modules/multiqc/meta.yml +++ b/modules/nf-core/multiqc/meta.yml @@ -12,11 +12,25 @@ tools: homepage: https://multiqc.info/ documentation: https://multiqc.info/docs/ licence: ["GPL-3.0-or-later"] + input: - multiqc_files: type: file description: | List of reports / files recognised by MultiQC, for example the html and zip output of FastQC + - multiqc_config: + type: file + description: Optional config yml for MultiQC + pattern: "*.{yml,yaml}" + - extra_multiqc_config: + type: file + description: Second optional config yml for MultiQC. Will override common sections in multiqc_config. + pattern: "*.{yml,yaml}" + - multiqc_logo: + type: file + description: Optional logo file for MultiQC + pattern: "*.{png}" + output: - report: type: file @@ -38,3 +52,4 @@ authors: - "@abhi18av" - "@bunop" - "@drpatelh" + - "@jfy133" diff --git a/nextflow.config b/nextflow.config index 6d6bf3b8..4f42c8c3 100644 --- a/nextflow.config +++ b/nextflow.config @@ -21,7 +21,9 @@ params { // MultiQC options multiqc_config = null multiqc_title = null + multiqc_logo = null max_multiqc_email_size = '25.MB' + multiqc_methods_description = null // Boilerplate options outdir = null @@ -31,6 +33,7 @@ params { email_on_fail = null plaintext_email = false monochrome_logs = false + hook_url = null help = false validate_params = true show_hidden_params = false @@ -74,7 +77,6 @@ try { // } - profiles { debug { process.beforeScript = 'echo $HOSTNAME' } conda { @@ -189,6 +191,7 @@ manifest { mainScript = 'main.nf' nextflowVersion = '!>=21.10.3' version = '2.1.0dev' + doi = '' } // Load modules.config for DSL2 module specific options diff --git a/nextflow_schema.json b/nextflow_schema.json index f39b745e..8538aaac 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -213,12 +213,30 @@ "fa_icon": "fas fa-palette", "hidden": true }, + "hook_url": { + "type": "string", + "description": "Incoming hook URL for messaging service", + "fa_icon": "fas fa-people-group", + "help_text": "Incoming hook URL for messaging service. Currently, only MS Teams is supported.", + "hidden": true + }, "multiqc_config": { "type": "string", "description": "Custom config file to supply to MultiQC.", "fa_icon": "fas fa-cog", "hidden": true }, + "multiqc_logo": { + "type": "string", + "description": "Custom logo file to supply to MultiQC. File name must also be set in the MultiQC config file", + "fa_icon": "fas fa-image", + "hidden": true + }, + "multiqc_methods_description": { + "type": "string", + "description": "Custom MultiQC yaml file containing HTML including a methods description.", + "fa_icon": "fas fa-cog" + }, "tracedir": { "type": "string", "description": "Directory to keep pipeline Nextflow logs and reports.", diff --git a/workflows/bacass.nf b/workflows/bacass.nf index c9d60ecf..61a125d6 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -23,8 +23,10 @@ if (params.input) { ch_input = file(params.input) } else { exit 1, 'Input sample ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -ch_multiqc_config = file("$projectDir/assets/multiqc_config.yml", checkIfExists: true) -ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config) : Channel.empty() +ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true) +ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath( params.multiqc_config, checkIfExists: true ) : Channel.empty() +ch_multiqc_logo = params.multiqc_logo ? Channel.fromPath( params.multiqc_logo, checkIfExists: true ) : Channel.empty() +ch_multiqc_custom_methods_description = params.multiqc_methods_description ? file(params.multiqc_methods_description, checkIfExists: true) : file("$projectDir/assets/methods_description_template.yml", checkIfExists: true) /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -46,9 +48,9 @@ include { INPUT_CHECK } from '../subworkflows/local/input_check' // // MODULE: Installed directly from nf-core/modules // -include { FASTQC } from '../modules/nf-core/modules/fastqc/main' -include { MULTIQC } from '../modules/nf-core/modules/multiqc/main' -include { CUSTOM_DUMPSOFTWAREVERSIONS } from '../modules/nf-core/modules/custom/dumpsoftwareversions/main' +include { FASTQC } from '../modules/nf-core/fastqc/main' +include { MULTIQC } from '../modules/nf-core/multiqc/main' +include { CUSTOM_DUMPSOFTWAREVERSIONS } from '../modules/nf-core/custom/dumpsoftwareversions/main' /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -89,15 +91,20 @@ workflow BACASS { workflow_summary = WorkflowBacass.paramsSummaryMultiqc(workflow, summary_params) ch_workflow_summary = Channel.value(workflow_summary) + methods_description = WorkflowBacass.methodsDescriptionText(workflow, ch_multiqc_custom_methods_description) + ch_methods_description = Channel.value(methods_description) + ch_multiqc_files = Channel.empty() - ch_multiqc_files = ch_multiqc_files.mix(Channel.from(ch_multiqc_config)) - ch_multiqc_files = ch_multiqc_files.mix(ch_multiqc_custom_config.collect().ifEmpty([])) ch_multiqc_files = ch_multiqc_files.mix(ch_workflow_summary.collectFile(name: 'workflow_summary_mqc.yaml')) + ch_multiqc_files = ch_multiqc_files.mix(ch_methods_description.collectFile(name: 'methods_description_mqc.yaml')) ch_multiqc_files = ch_multiqc_files.mix(CUSTOM_DUMPSOFTWAREVERSIONS.out.mqc_yml.collect()) ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.ifEmpty([])) MULTIQC ( - ch_multiqc_files.collect() + ch_multiqc_files.collect(), + ch_multiqc_config.collect().ifEmpty([]), + ch_multiqc_custom_config.collect().ifEmpty([]), + ch_multiqc_logo.collect().ifEmpty([]) ) multiqc_report = MULTIQC.out.report.toList() ch_versions = ch_versions.mix(MULTIQC.out.versions) @@ -114,6 +121,9 @@ workflow.onComplete { NfcoreTemplate.email(workflow, params, summary_params, projectDir, log, multiqc_report) } NfcoreTemplate.summary(workflow, params, log) + if (params.hook_url) { + NfcoreTemplate.adaptivecard(workflow, params, summary_params, projectDir, log) + } } /* From 3a8ff0b0a3d806c0832235e2ccd12a2214e34b3d Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Thu, 8 Dec 2022 13:09:25 +0000 Subject: [PATCH 09/21] Template update for nf-core/tools version 2.7.1 --- .devcontainer/devcontainer.json | 27 +++++++++++++ .gitattributes | 1 + .github/CONTRIBUTING.md | 16 ++++++++ .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/workflows/ci.yml | 8 +++- .github/workflows/fix-linting.yml | 6 +-- .github/workflows/linting.yml | 18 +++++---- .github/workflows/linting_comment.yml | 2 +- .prettierignore | 2 + CITATION.cff | 56 --------------------------- README.md | 4 +- assets/slackreport.json | 34 ++++++++++++++++ docs/usage.md | 24 +++++++----- lib/NfcoreSchema.groovy | 1 - lib/NfcoreTemplate.groovy | 41 +++++++++++++++----- lib/WorkflowMain.groovy | 18 ++++++--- modules.json | 9 +++-- modules/local/samplesheet_check.nf | 4 ++ nextflow.config | 12 ++++-- nextflow_schema.json | 8 +++- workflows/bacass.nf | 11 +++--- 21 files changed, 193 insertions(+), 111 deletions(-) create mode 100644 .devcontainer/devcontainer.json delete mode 100644 CITATION.cff create mode 100644 assets/slackreport.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..ea27a584 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,27 @@ +{ + "name": "nfcore", + "image": "nfcore/gitpod:latest", + "remoteUser": "gitpod", + + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + // Set *default* container specific settings.json values on container create. + "settings": { + "python.defaultInterpreterPath": "/opt/conda/bin/python", + "python.linting.enabled": true, + "python.linting.pylintEnabled": true, + "python.formatting.autopep8Path": "/opt/conda/bin/autopep8", + "python.formatting.yapfPath": "/opt/conda/bin/yapf", + "python.linting.flake8Path": "/opt/conda/bin/flake8", + "python.linting.pycodestylePath": "/opt/conda/bin/pycodestyle", + "python.linting.pydocstylePath": "/opt/conda/bin/pydocstyle", + "python.linting.pylintPath": "/opt/conda/bin/pylint" + }, + + // Add the IDs of extensions you want installed when the container is created. + "extensions": ["ms-python.python", "ms-python.vscode-pylance", "nf-core.nf-core-extensionpack"] + } + } +} diff --git a/.gitattributes b/.gitattributes index 050bb120..7a2dabc2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ *.config linguist-language=nextflow +*.nf.test linguist-language=nextflow modules/nf-core/** linguist-generated subworkflows/nf-core/** linguist-generated diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 60f7799e..33b89e71 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -101,3 +101,19 @@ If you are using a new feature from core Nextflow, you may bump the minimum requ ### Images and figures For overview images and other documents we follow the nf-core [style guidelines and examples](https://nf-co.re/developers/design_guidelines). + +## GitHub Codespaces + +This repo includes a devcontainer configuration which will create a GitHub Codespaces for Nextflow development! This is an online developer environment that runs in your browser, complete with VSCode and a terminal. + +To get started: + +- Open the repo in [Codespaces](https://github.com/nf-core/bacass/codespaces) +- Tools installed + - nf-core + - Nextflow + +Devcontainer specs: + +- [DevContainer config](.devcontainer/devcontainer.json) +- [Dockerfile](.devcontainer/Dockerfile) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 527bcbd4..cb41a232 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -42,7 +42,7 @@ body: attributes: label: System information description: | - * Nextflow version _(eg. 21.10.3)_ + * Nextflow version _(eg. 22.10.1)_ * Hardware _(eg. HPC, Desktop, Cloud)_ * Executor _(eg. slurm, local, awsbatch)_ * Container engine: _(e.g. Docker, Singularity, Conda, Podman, Shifter or Charliecloud)_ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a880e241..c91c0fb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,10 @@ on: env: NXF_ANSI_LOG: false +concurrency: + group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" + cancel-in-progress: true + jobs: test: name: Run pipeline with test data @@ -20,11 +24,11 @@ jobs: strategy: matrix: NXF_VER: - - "21.10.3" + - "22.10.1" - "latest-everything" steps: - name: Check out pipeline code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Nextflow uses: nf-core/setup-nextflow@v1 diff --git a/.github/workflows/fix-linting.yml b/.github/workflows/fix-linting.yml index 05f28000..bbe598f0 100644 --- a/.github/workflows/fix-linting.yml +++ b/.github/workflows/fix-linting.yml @@ -24,7 +24,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.nf_core_bot_auth_token }} - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 - name: Install Prettier run: npm install -g prettier @prettier/plugin-php @@ -34,9 +34,9 @@ jobs: id: prettier_status run: | if prettier --check ${GITHUB_WORKSPACE}; then - echo "::set-output name=result::pass" + echo "name=result::pass" >> $GITHUB_OUTPUT else - echo "::set-output name=result::fail" + echo "name=result::fail" >> $GITHUB_OUTPUT fi - name: Run 'prettier --write' diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 8a5ce69b..858d622e 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -4,6 +4,8 @@ name: nf-core linting # that the code meets the nf-core guidelines. on: push: + branches: + - dev pull_request: release: types: [published] @@ -12,9 +14,9 @@ jobs: EditorConfig: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 - name: Install editorconfig-checker run: npm install -g editorconfig-checker @@ -25,9 +27,9 @@ jobs: Prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 - name: Install Prettier run: npm install -g prettier @@ -38,7 +40,7 @@ jobs: PythonBlack: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Check code lints with Black uses: psf/black@stable @@ -69,12 +71,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out pipeline code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Nextflow uses: nf-core/setup-nextflow@v1 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 with: python-version: "3.7" architecture: "x64" @@ -97,7 +99,7 @@ jobs: - name: Upload linting log file artifact if: ${{ always() }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: linting-logs path: | diff --git a/.github/workflows/linting_comment.yml b/.github/workflows/linting_comment.yml index 04758f61..39635186 100644 --- a/.github/workflows/linting_comment.yml +++ b/.github/workflows/linting_comment.yml @@ -18,7 +18,7 @@ jobs: - name: Get PR number id: pr_number - run: echo "::set-output name=pr_number::$(cat linting-logs/PR_number.txt)" + run: echo "name=pr_number::$(cat linting-logs/PR_number.txt)" >> $GITHUB_OUTPUT - name: Post PR comment uses: marocchino/sticky-pull-request-comment@v2 diff --git a/.prettierignore b/.prettierignore index eb74a574..437d763d 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,5 +1,6 @@ email_template.html adaptivecard.json +slackreport.json .nextflow* work/ data/ @@ -8,3 +9,4 @@ results/ testing/ testing* *.pyc +bin/ diff --git a/CITATION.cff b/CITATION.cff deleted file mode 100644 index 017666c0..00000000 --- a/CITATION.cff +++ /dev/null @@ -1,56 +0,0 @@ -cff-version: 1.2.0 -message: "If you use `nf-core tools` in your work, please cite the `nf-core` publication" -authors: - - family-names: Ewels - given-names: Philip - - family-names: Peltzer - given-names: Alexander - - family-names: Fillinger - given-names: Sven - - family-names: Patel - given-names: Harshil - - family-names: Alneberg - given-names: Johannes - - family-names: Wilm - given-names: Andreas - - family-names: Garcia - given-names: Maxime Ulysse - - family-names: Di Tommaso - given-names: Paolo - - family-names: Nahnsen - given-names: Sven -title: "The nf-core framework for community-curated bioinformatics pipelines." -version: 2.4.1 -doi: 10.1038/s41587-020-0439-x -date-released: 2022-05-16 -url: https://github.com/nf-core/tools -prefered-citation: - type: article - authors: - - family-names: Ewels - given-names: Philip - - family-names: Peltzer - given-names: Alexander - - family-names: Fillinger - given-names: Sven - - family-names: Patel - given-names: Harshil - - family-names: Alneberg - given-names: Johannes - - family-names: Wilm - given-names: Andreas - - family-names: Garcia - given-names: Maxime Ulysse - - family-names: Di Tommaso - given-names: Paolo - - family-names: Nahnsen - given-names: Sven - doi: 10.1038/s41587-020-0439-x - journal: nature biotechnology - start: 276 - end: 278 - title: "The nf-core framework for community-curated bioinformatics pipelines." - issue: 3 - volume: 38 - year: 2020 - url: https://dx.doi.org/10.1038/s41587-020-0439-x diff --git a/README.md b/README.md index ddd4f49a..5aab6a15 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?labelColor=000000&logo=Amazon%20AWS)](https://nf-co.re/bacass/results)[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8?labelColor=000000)](https://doi.org/10.5281/zenodo.XXXXXXX) -[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.10.3-23aa62.svg)](https://www.nextflow.io/) +[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A522.10.1-23aa62.svg)](https://www.nextflow.io/) [![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?labelColor=000000&logo=anaconda)](https://docs.conda.io/en/latest/) [![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?labelColor=000000&logo=docker)](https://www.docker.com/) [![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) @@ -31,7 +31,7 @@ On release, automated continuous integration tests run the pipeline on a full-si ## Quick Start -1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=21.10.3`) +1. Install [`Nextflow`](https://www.nextflow.io/docs/latest/getstarted.html#installation) (`>=22.10.1`) 2. Install any of [`Docker`](https://docs.docker.com/engine/installation/), [`Singularity`](https://www.sylabs.io/guides/3.0/user-guide/) (you can follow [this tutorial](https://singularity-tutorial.github.io/01-installation/)), [`Podman`](https://podman.io/), [`Shifter`](https://nersc.gitlab.io/development/shifter/how-to-use/) or [`Charliecloud`](https://hpc.github.io/charliecloud/) for full pipeline reproducibility _(you can use [`Conda`](https://conda.io/miniconda.html) both to install Nextflow itself and also to manage software within pipelines. Please only use it within pipelines as a last resort; see [docs](https://nf-co.re/usage/configuration#basic-configuration-profiles))_. diff --git a/assets/slackreport.json b/assets/slackreport.json new file mode 100644 index 00000000..043d02f2 --- /dev/null +++ b/assets/slackreport.json @@ -0,0 +1,34 @@ +{ + "attachments": [ + { + "fallback": "Plain-text summary of the attachment.", + "color": "<% if (success) { %>good<% } else { %>danger<%} %>", + "author_name": "sanger-tol/readmapping v${version} - ${runName}", + "author_icon": "https://www.nextflow.io/docs/latest/_static/favicon.ico", + "text": "<% if (success) { %>Pipeline completed successfully!<% } else { %>Pipeline completed with errors<% } %>", + "fields": [ + { + "title": "Command used to launch the workflow", + "value": "```${commandLine}```", + "short": false + } + <% + if (!success) { %> + , + { + "title": "Full error message", + "value": "```${errorReport}```", + "short": false + }, + { + "title": "Pipeline configuration", + "value": "<% out << summary.collect{ k,v -> k == "hook_url" ? "_${k}_: (_hidden_)" : ( ( v.class.toString().contains('Path') || ( v.class.toString().contains('String') && v.contains('/') ) ) ? "_${k}_: `${v}`" : (v.class.toString().contains('DateTime') ? ("_${k}_: " + v.format(java.time.format.DateTimeFormatter.ofLocalizedDateTime(java.time.format.FormatStyle.MEDIUM))) : "_${k}_: ${v}") ) }.join(",\n") %>", + "short": false + } + <% } + %> + ], + "footer": "Completed at <% out << dateComplete.format(java.time.format.DateTimeFormatter.ofLocalizedDateTime(java.time.format.FormatStyle.MEDIUM)) %> (duration: ${duration})" + } + ] +} diff --git a/docs/usage.md b/docs/usage.md index dd339d43..d5602abb 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -83,9 +83,9 @@ nextflow pull nf-core/bacass It is a good idea to specify a pipeline version when running the pipeline on your data. This ensures that a specific version of the pipeline code and software are used when you run your pipeline. If you keep using the same tag, you'll be running the same version of the pipeline, even if there have been changes to the code since. -First, go to the [nf-core/bacass releases page](https://github.com/nf-core/bacass/releases) and find the latest version number - numeric only (eg. `1.3.1`). Then specify this when running the pipeline with `-r` (one hyphen) - eg. `-r 1.3.1`. +First, go to the [nf-core/bacass releases page](https://github.com/nf-core/bacass/releases) and find the latest pipeline version - numeric only (eg. `1.3.1`). Then specify this when running the pipeline with `-r` (one hyphen) - eg. `-r 1.3.1`. Of course, you can switch to another version by changing the number after the `-r` flag. -This version number will be logged in reports when you run the pipeline, so that you'll know what you used when you look back in the future. +This version number will be logged in reports when you run the pipeline, so that you'll know what you used when you look back in the future. For example, at the bottom of the MultiQC reports. ## Core Nextflow arguments @@ -95,7 +95,7 @@ This version number will be logged in reports when you run the pipeline, so that Use this parameter to choose a configuration profile. Profiles can give configuration presets for different compute environments. -Several generic profiles are bundled with the pipeline which instruct the pipeline to use software packaged using different methods (Docker, Singularity, Podman, Shifter, Charliecloud, Conda) - see below. When using Biocontainers, most of these software packaging methods pull Docker containers from quay.io e.g [FastQC](https://quay.io/repository/biocontainers/fastqc) except for Singularity which directly downloads Singularity images via https hosted by the [Galaxy project](https://depot.galaxyproject.org/singularity/) and Conda which downloads and installs software locally from [Bioconda](https://bioconda.github.io/). +Several generic profiles are bundled with the pipeline which instruct the pipeline to use software packaged using different methods (Docker, Singularity, Podman, Shifter, Charliecloud, Conda) - see below. > We highly recommend the use of Docker or Singularity containers for full pipeline reproducibility, however when this is not possible, Conda is also supported. @@ -104,8 +104,11 @@ The pipeline also dynamically loads configurations from [https://github.com/nf-c Note that multiple profiles can be loaded, for example: `-profile test,docker` - the order of arguments is important! They are loaded in sequence, so later profiles can overwrite earlier profiles. -If `-profile` is not specified, the pipeline will run locally and expect all software to be installed and available on the `PATH`. This is _not_ recommended. +If `-profile` is not specified, the pipeline will run locally and expect all software to be installed and available on the `PATH`. This is _not_ recommended, since it can lead to different results on different machines dependent on the computer enviroment. +- `test` + - A profile with a complete configuration for automated testing + - Includes links to test data so needs no other parameters - `docker` - A generic configuration profile to be used with [Docker](https://docker.com/) - `singularity` @@ -118,9 +121,6 @@ If `-profile` is not specified, the pipeline will run locally and expect all sof - A generic configuration profile to be used with [Charliecloud](https://hpc.github.io/charliecloud/) - `conda` - A generic configuration profile to be used with [Conda](https://conda.io/docs/). Please only use Conda as a last resort i.e. when it's not possible to run the pipeline with Docker, Singularity, Podman, Shifter or Charliecloud. -- `test` - - A profile with a complete configuration for automated testing - - Includes links to test data so needs no other parameters ### `-resume` @@ -169,8 +169,14 @@ Work dir: Tip: you can replicate the issue by changing to the process work dir and entering the command `bash .command.run` ``` +#### For beginners + +A first step to bypass this error, you could try to increase the amount of CPUs, memory, and time for the whole pipeline. Therefor you can try to increase the resource for the parameters `--max_cpus`, `--max_memory`, and `--max_time`. Based on the error above, you have to increase the amount of memory. Therefore you can go to the [parameter documentation of rnaseq](https://nf-co.re/rnaseq/3.9/parameters) and scroll down to the `show hidden parameter` button to get the default value for `--max_memory`. In this case 128GB, you than can try to run your pipeline again with `--max_memory 200GB -resume` to skip all process, that were already calculated. If you can not increase the resource of the complete pipeline, you can try to adapt the resource for a single process as mentioned below. + +#### Advanced option on process level + To bypass this error you would need to find exactly which resources are set by the `STAR_ALIGN` process. The quickest way is to search for `process STAR_ALIGN` in the [nf-core/rnaseq Github repo](https://github.com/nf-core/rnaseq/search?q=process+STAR_ALIGN). -We have standardised the structure of Nextflow DSL2 pipelines such that all module files will be present in the `modules/` directory and so, based on the search results, the file we want is `modules/nf-core/software/star/align/main.nf`. +We have standardised the structure of Nextflow DSL2 pipelines such that all module files will be present in the `modules/` directory and so, based on the search results, the file we want is `modules/nf-core/star/align/main.nf`. If you click on the link to that file you will notice that there is a `label` directive at the top of the module that is set to [`label process_high`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/modules/nf-core/software/star/align/main.nf#L9). The [Nextflow `label`](https://www.nextflow.io/docs/latest/process.html#label) directive allows us to organise workflow processes in separate groups which can be referenced in a configuration file to select and configure subset of processes having similar computing requirements. The default values for the `process_high` label are set in the pipeline's [`base.config`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/base.config#L33-L37) which in this case is defined as 72GB. @@ -189,7 +195,7 @@ process { > > If you get a warning suggesting that the process selector isn't recognised check that the process name has been specified correctly. -### Updating containers +### Updating containers (advanced users) The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. If for some reason you need to use a different version of a particular tool with the pipeline then you just need to identify the `process` name and override the Nextflow `container` definition for that process using the `withName` declaration. For example, in the [nf-core/viralrecon](https://nf-co.re/viralrecon) pipeline a tool called [Pangolin](https://github.com/cov-lineages/pangolin) has been used during the COVID-19 pandemic to assign lineages to SARS-CoV-2 genome sequenced samples. Given that the lineage assignments change quite frequently it doesn't make sense to re-release the nf-core/viralrecon everytime a new version of Pangolin has been released. However, you can override the default container used by the pipeline by creating a custom config file and passing it as a command-line argument via `-c custom.config`. diff --git a/lib/NfcoreSchema.groovy b/lib/NfcoreSchema.groovy index b3d092f8..33cd4f6e 100755 --- a/lib/NfcoreSchema.groovy +++ b/lib/NfcoreSchema.groovy @@ -46,7 +46,6 @@ class NfcoreSchema { 'quiet', 'syslog', 'v', - 'version', // Options for `nextflow run` command 'ansi', diff --git a/lib/NfcoreTemplate.groovy b/lib/NfcoreTemplate.groovy index 27feb009..25a0a74a 100755 --- a/lib/NfcoreTemplate.groovy +++ b/lib/NfcoreTemplate.groovy @@ -32,6 +32,25 @@ class NfcoreTemplate { } } + // + // Generate version string + // + public static String version(workflow) { + String version_string = "" + + if (workflow.manifest.version) { + def prefix_v = workflow.manifest.version[0] != 'v' ? 'v' : '' + version_string += "${prefix_v}${workflow.manifest.version}" + } + + if (workflow.commitId) { + def git_shortsha = workflow.commitId.substring(0, 7) + version_string += "-g${git_shortsha}" + } + + return version_string + } + // // Construct and send completion email // @@ -61,7 +80,7 @@ class NfcoreTemplate { misc_fields['Nextflow Compile Timestamp'] = workflow.nextflow.timestamp def email_fields = [:] - email_fields['version'] = workflow.manifest.version + email_fields['version'] = NfcoreTemplate.version(workflow) email_fields['runName'] = workflow.runName email_fields['success'] = workflow.success email_fields['dateComplete'] = workflow.complete @@ -146,10 +165,10 @@ class NfcoreTemplate { } // - // Construct and send adaptive card - // https://adaptivecards.io + // Construct and send a notification to a web server as JSON + // e.g. Microsoft Teams and Slack // - public static void adaptivecard(workflow, params, summary_params, projectDir, log) { + public static void IM_notification(workflow, params, summary_params, projectDir, log) { def hook_url = params.hook_url def summary = [:] @@ -170,7 +189,7 @@ class NfcoreTemplate { misc_fields['nxf_timestamp'] = workflow.nextflow.timestamp def msg_fields = [:] - msg_fields['version'] = workflow.manifest.version + msg_fields['version'] = NfcoreTemplate.version(workflow) msg_fields['runName'] = workflow.runName msg_fields['success'] = workflow.success msg_fields['dateComplete'] = workflow.complete @@ -178,13 +197,16 @@ class NfcoreTemplate { msg_fields['exitStatus'] = workflow.exitStatus msg_fields['errorMessage'] = (workflow.errorMessage ?: 'None') msg_fields['errorReport'] = (workflow.errorReport ?: 'None') - msg_fields['commandLine'] = workflow.commandLine + msg_fields['commandLine'] = workflow.commandLine.replaceFirst(/ +--hook_url +[^ ]+/, "") msg_fields['projectDir'] = workflow.projectDir msg_fields['summary'] = summary << misc_fields // Render the JSON template def engine = new groovy.text.GStringTemplateEngine() - def hf = new File("$projectDir/assets/adaptivecard.json") + // Different JSON depending on the service provider + // Defaults to "Adaptive Cards" (https://adaptivecards.io), except Slack which has its own format + def json_path = hook_url.contains("hooks.slack.com") ? "slackreport.json" : "adaptivecard.json" + def hf = new File("$projectDir/assets/${json_path}") def json_template = engine.createTemplate(hf).make(msg_fields) def json_message = json_template.toString() @@ -209,7 +231,7 @@ class NfcoreTemplate { if (workflow.stats.ignoredCount == 0) { log.info "-${colors.purple}[$workflow.manifest.name]${colors.green} Pipeline completed successfully${colors.reset}-" } else { - log.info "-${colors.purple}[$workflow.manifest.name]${colors.red} Pipeline completed successfully, but with errored process(es) ${colors.reset}-" + log.info "-${colors.purple}[$workflow.manifest.name]${colors.yellow} Pipeline completed successfully, but with errored process(es) ${colors.reset}-" } } else { log.info "-${colors.purple}[$workflow.manifest.name]${colors.red} Pipeline completed with errors${colors.reset}-" @@ -297,6 +319,7 @@ class NfcoreTemplate { // public static String logo(workflow, monochrome_logs) { Map colors = logColours(monochrome_logs) + String workflow_version = NfcoreTemplate.version(workflow) String.format( """\n ${dashedLine(monochrome_logs)} @@ -305,7 +328,7 @@ class NfcoreTemplate { ${colors.blue} |\\ | |__ __ / ` / \\ |__) |__ ${colors.yellow}} {${colors.reset} ${colors.blue} | \\| | \\__, \\__/ | \\ |___ ${colors.green}\\`-._,-`-,${colors.reset} ${colors.green}`._,._,\'${colors.reset} - ${colors.purple} ${workflow.manifest.name} v${workflow.manifest.version}${colors.reset} + ${colors.purple} ${workflow.manifest.name} ${workflow_version}${colors.reset} ${dashedLine(monochrome_logs)} """.stripIndent() ) diff --git a/lib/WorkflowMain.groovy b/lib/WorkflowMain.groovy index 8379896f..5da24bb5 100755 --- a/lib/WorkflowMain.groovy +++ b/lib/WorkflowMain.groovy @@ -19,7 +19,7 @@ class WorkflowMain { } // - // Print help to screen if required + // Generate help string // public static String help(workflow, params, log) { def command = "nextflow run ${workflow.manifest.name} --input samplesheet.csv --genome GRCh37 -profile docker" @@ -32,7 +32,7 @@ class WorkflowMain { } // - // Print parameter summary log to screen + // Generate parameter summary log string // public static String paramsSummaryLog(workflow, params, log) { def summary_log = '' @@ -53,15 +53,21 @@ class WorkflowMain { System.exit(0) } - // Validate workflow parameters via the JSON schema - if (params.validate_params) { - NfcoreSchema.validateParameters(workflow, params, log) + // Print workflow version and exit on --version + if (params.version) { + String workflow_version = NfcoreTemplate.version(workflow) + log.info "${workflow.manifest.name} ${workflow_version}" + System.exit(0) } // Print parameter summary log to screen - log.info paramsSummaryLog(workflow, params, log) + // Validate workflow parameters via the JSON schema + if (params.validate_params) { + NfcoreSchema.validateParameters(workflow, params, log) + } + // Check that a -profile or Nextflow config has been provided to run the pipeline NfcoreTemplate.checkConfigProvided(workflow, log) diff --git a/modules.json b/modules.json index 80d8edb7..44e747ab 100644 --- a/modules.json +++ b/modules.json @@ -7,15 +7,18 @@ "nf-core": { "custom/dumpsoftwareversions": { "branch": "master", - "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905" + "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905", + "installed_by": ["modules"] }, "fastqc": { "branch": "master", - "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905" + "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905", + "installed_by": ["modules"] }, "multiqc": { "branch": "master", - "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905" + "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905", + "installed_by": ["modules"] } } } diff --git a/modules/local/samplesheet_check.nf b/modules/local/samplesheet_check.nf index 322bd1e9..43f0b971 100644 --- a/modules/local/samplesheet_check.nf +++ b/modules/local/samplesheet_check.nf @@ -1,5 +1,6 @@ process SAMPLESHEET_CHECK { tag "$samplesheet" + label 'process_single' conda (params.enable_conda ? "conda-forge::python=3.8.3" : null) container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? @@ -13,6 +14,9 @@ process SAMPLESHEET_CHECK { path '*.csv' , emit: csv path "versions.yml", emit: versions + when: + task.ext.when == null || task.ext.when + script: // This script is bundled with the pipeline, in nf-core/bacass/bin/ """ check_samplesheet.py \\ diff --git a/nextflow.config b/nextflow.config index 4f42c8c3..a72d8c36 100644 --- a/nextflow.config +++ b/nextflow.config @@ -35,6 +35,7 @@ params { monochrome_logs = false hook_url = null help = false + version = false validate_params = true show_hidden_params = false schema_ignore_params = 'genomes' @@ -81,6 +82,7 @@ profiles { debug { process.beforeScript = 'echo $HOSTNAME' } conda { params.enable_conda = true + conda.enabled = true docker.enabled = false singularity.enabled = false podman.enabled = false @@ -89,6 +91,7 @@ profiles { } mamba { params.enable_conda = true + conda.enabled = true conda.useMamba = true docker.enabled = false singularity.enabled = false @@ -104,6 +107,9 @@ profiles { shifter.enabled = false charliecloud.enabled = false } + arm { + docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64' + } singularity { singularity.enabled = true singularity.autoMounts = true @@ -185,11 +191,11 @@ dag { manifest { name = 'nf-core/bacass' - author = 'Andreas Wilm, Alexander Peltzer' + author = """Andreas Wilm, Alexander Peltzer""" homePage = 'https://github.com/nf-core/bacass' - description = 'Simple bacterial assembly and annotation' + description = """Simple bacterial assembly and annotation""" mainScript = 'main.nf' - nextflowVersion = '!>=21.10.3' + nextflowVersion = '!>=22.10.1' version = '2.1.0dev' doi = '' } diff --git a/nextflow_schema.json b/nextflow_schema.json index 8538aaac..317a7e21 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -176,6 +176,12 @@ "fa_icon": "fas fa-question-circle", "hidden": true }, + "version": { + "type": "boolean", + "description": "Display version and exit.", + "fa_icon": "fas fa-question-circle", + "hidden": true + }, "publish_dir_mode": { "type": "string", "default": "copy", @@ -217,7 +223,7 @@ "type": "string", "description": "Incoming hook URL for messaging service", "fa_icon": "fas fa-people-group", - "help_text": "Incoming hook URL for messaging service. Currently, only MS Teams is supported.", + "help_text": "Incoming hook URL for messaging service. Currently, MS Teams and Slack are supported.", "hidden": true }, "multiqc_config": { diff --git a/workflows/bacass.nf b/workflows/bacass.nf index 61a125d6..2f295b1c 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -82,7 +82,7 @@ workflow BACASS { ch_versions = ch_versions.mix(FASTQC.out.versions.first()) CUSTOM_DUMPSOFTWAREVERSIONS ( - ch_versions.unique().collectFile(name: 'collated_versions.yml') + ch_versions.unique{ it.text }.collectFile(name: 'collated_versions.yml') ) // @@ -102,12 +102,11 @@ workflow BACASS { MULTIQC ( ch_multiqc_files.collect(), - ch_multiqc_config.collect().ifEmpty([]), - ch_multiqc_custom_config.collect().ifEmpty([]), - ch_multiqc_logo.collect().ifEmpty([]) + ch_multiqc_config.toList(), + ch_multiqc_custom_config.toList(), + ch_multiqc_logo.toList() ) multiqc_report = MULTIQC.out.report.toList() - ch_versions = ch_versions.mix(MULTIQC.out.versions) } /* @@ -122,7 +121,7 @@ workflow.onComplete { } NfcoreTemplate.summary(workflow, params, log) if (params.hook_url) { - NfcoreTemplate.adaptivecard(workflow, params, summary_params, projectDir, log) + NfcoreTemplate.IM_notification(workflow, params, summary_params, projectDir, log) } } From 10134667db97cb25b1cb4469a35453b0974a7df6 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Mon, 19 Dec 2022 12:04:59 +0000 Subject: [PATCH 10/21] Template update for nf-core/tools version 2.7.2 --- .github/workflows/fix-linting.yml | 4 +- .github/workflows/linting_comment.yml | 2 +- lib/WorkflowMain.groovy | 2 +- modules.json | 6 +- modules/local/samplesheet_check.nf | 2 +- .../custom/dumpsoftwareversions/main.nf | 2 +- .../templates/dumpsoftwareversions.py | 99 ++++++++++--------- modules/nf-core/fastqc/main.nf | 40 +++----- modules/nf-core/multiqc/main.nf | 2 +- nextflow.config | 3 - nextflow_schema.json | 6 -- workflows/bacass.nf | 2 +- 12 files changed, 82 insertions(+), 88 deletions(-) mode change 100644 => 100755 modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py diff --git a/.github/workflows/fix-linting.yml b/.github/workflows/fix-linting.yml index bbe598f0..474f2f76 100644 --- a/.github/workflows/fix-linting.yml +++ b/.github/workflows/fix-linting.yml @@ -34,9 +34,9 @@ jobs: id: prettier_status run: | if prettier --check ${GITHUB_WORKSPACE}; then - echo "name=result::pass" >> $GITHUB_OUTPUT + echo "result=pass" >> $GITHUB_OUTPUT else - echo "name=result::fail" >> $GITHUB_OUTPUT + echo "result=fail" >> $GITHUB_OUTPUT fi - name: Run 'prettier --write' diff --git a/.github/workflows/linting_comment.yml b/.github/workflows/linting_comment.yml index 39635186..0bbcd30f 100644 --- a/.github/workflows/linting_comment.yml +++ b/.github/workflows/linting_comment.yml @@ -18,7 +18,7 @@ jobs: - name: Get PR number id: pr_number - run: echo "name=pr_number::$(cat linting-logs/PR_number.txt)" >> $GITHUB_OUTPUT + run: echo "pr_number=$(cat linting-logs/PR_number.txt)" >> $GITHUB_OUTPUT - name: Post PR comment uses: marocchino/sticky-pull-request-comment@v2 diff --git a/lib/WorkflowMain.groovy b/lib/WorkflowMain.groovy index 5da24bb5..2ec0947a 100755 --- a/lib/WorkflowMain.groovy +++ b/lib/WorkflowMain.groovy @@ -72,7 +72,7 @@ class WorkflowMain { NfcoreTemplate.checkConfigProvided(workflow, log) // Check that conda channels are set-up correctly - if (params.enable_conda) { + if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) { Utils.checkCondaChannels(log) } diff --git a/modules.json b/modules.json index 44e747ab..c5beae30 100644 --- a/modules.json +++ b/modules.json @@ -7,17 +7,17 @@ "nf-core": { "custom/dumpsoftwareversions": { "branch": "master", - "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905", + "git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c", "installed_by": ["modules"] }, "fastqc": { "branch": "master", - "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905", + "git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c", "installed_by": ["modules"] }, "multiqc": { "branch": "master", - "git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905", + "git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c", "installed_by": ["modules"] } } diff --git a/modules/local/samplesheet_check.nf b/modules/local/samplesheet_check.nf index 43f0b971..c24ecd64 100644 --- a/modules/local/samplesheet_check.nf +++ b/modules/local/samplesheet_check.nf @@ -2,7 +2,7 @@ process SAMPLESHEET_CHECK { tag "$samplesheet" label 'process_single' - conda (params.enable_conda ? "conda-forge::python=3.8.3" : null) + conda "conda-forge::python=3.8.3" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://depot.galaxyproject.org/singularity/python:3.8.3' : 'quay.io/biocontainers/python:3.8.3' }" diff --git a/modules/nf-core/custom/dumpsoftwareversions/main.nf b/modules/nf-core/custom/dumpsoftwareversions/main.nf index cebb6e05..3df21765 100644 --- a/modules/nf-core/custom/dumpsoftwareversions/main.nf +++ b/modules/nf-core/custom/dumpsoftwareversions/main.nf @@ -2,7 +2,7 @@ process CUSTOM_DUMPSOFTWAREVERSIONS { label 'process_single' // Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container - conda (params.enable_conda ? 'bioconda::multiqc=1.13' : null) + conda "bioconda::multiqc=1.13" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' : 'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }" diff --git a/modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py b/modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py old mode 100644 new mode 100755 index 787bdb7b..e55b8d43 --- a/modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py +++ b/modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py @@ -1,5 +1,9 @@ #!/usr/bin/env python + +"""Provide functions to merge multiple versions.yml files.""" + + import platform from textwrap import dedent @@ -7,6 +11,7 @@ def _make_versions_html(versions): + """Generate a tabular HTML output of all versions for MultiQC.""" html = [ dedent( """\\ @@ -45,47 +50,53 @@ def _make_versions_html(versions): return "\\n".join(html) -versions_this_module = {} -versions_this_module["${task.process}"] = { - "python": platform.python_version(), - "yaml": yaml.__version__, -} - -with open("$versions") as f: - versions_by_process = yaml.load(f, Loader=yaml.BaseLoader) | versions_this_module - -# aggregate versions by the module name (derived from fully-qualified process name) -versions_by_module = {} -for process, process_versions in versions_by_process.items(): - module = process.split(":")[-1] - try: - if versions_by_module[module] != process_versions: - raise AssertionError( - "We assume that software versions are the same between all modules. " - "If you see this error-message it means you discovered an edge-case " - "and should open an issue in nf-core/tools. " - ) - except KeyError: - versions_by_module[module] = process_versions - -versions_by_module["Workflow"] = { - "Nextflow": "$workflow.nextflow.version", - "$workflow.manifest.name": "$workflow.manifest.version", -} - -versions_mqc = { - "id": "software_versions", - "section_name": "${workflow.manifest.name} Software Versions", - "section_href": "https://github.com/${workflow.manifest.name}", - "plot_type": "html", - "description": "are collected at run time from the software output.", - "data": _make_versions_html(versions_by_module), -} - -with open("software_versions.yml", "w") as f: - yaml.dump(versions_by_module, f, default_flow_style=False) -with open("software_versions_mqc.yml", "w") as f: - yaml.dump(versions_mqc, f, default_flow_style=False) - -with open("versions.yml", "w") as f: - yaml.dump(versions_this_module, f, default_flow_style=False) +def main(): + """Load all version files and generate merged output.""" + versions_this_module = {} + versions_this_module["${task.process}"] = { + "python": platform.python_version(), + "yaml": yaml.__version__, + } + + with open("$versions") as f: + versions_by_process = yaml.load(f, Loader=yaml.BaseLoader) | versions_this_module + + # aggregate versions by the module name (derived from fully-qualified process name) + versions_by_module = {} + for process, process_versions in versions_by_process.items(): + module = process.split(":")[-1] + try: + if versions_by_module[module] != process_versions: + raise AssertionError( + "We assume that software versions are the same between all modules. " + "If you see this error-message it means you discovered an edge-case " + "and should open an issue in nf-core/tools. " + ) + except KeyError: + versions_by_module[module] = process_versions + + versions_by_module["Workflow"] = { + "Nextflow": "$workflow.nextflow.version", + "$workflow.manifest.name": "$workflow.manifest.version", + } + + versions_mqc = { + "id": "software_versions", + "section_name": "${workflow.manifest.name} Software Versions", + "section_href": "https://github.com/${workflow.manifest.name}", + "plot_type": "html", + "description": "are collected at run time from the software output.", + "data": _make_versions_html(versions_by_module), + } + + with open("software_versions.yml", "w") as f: + yaml.dump(versions_by_module, f, default_flow_style=False) + with open("software_versions_mqc.yml", "w") as f: + yaml.dump(versions_mqc, f, default_flow_style=False) + + with open("versions.yml", "w") as f: + yaml.dump(versions_this_module, f, default_flow_style=False) + + +if __name__ == "__main__": + main() diff --git a/modules/nf-core/fastqc/main.nf b/modules/nf-core/fastqc/main.nf index 05730368..9ae58381 100644 --- a/modules/nf-core/fastqc/main.nf +++ b/modules/nf-core/fastqc/main.nf @@ -2,7 +2,7 @@ process FASTQC { tag "$meta.id" label 'process_medium' - conda (params.enable_conda ? "bioconda::fastqc=0.11.9" : null) + conda "bioconda::fastqc=0.11.9" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://depot.galaxyproject.org/singularity/fastqc:0.11.9--0' : 'quay.io/biocontainers/fastqc:0.11.9--0' }" @@ -20,30 +20,22 @@ process FASTQC { script: def args = task.ext.args ?: '' - // Add soft-links to original FastQs for consistent naming in pipeline def prefix = task.ext.prefix ?: "${meta.id}" - if (meta.single_end) { - """ - [ ! -f ${prefix}.fastq.gz ] && ln -s $reads ${prefix}.fastq.gz - fastqc $args --threads $task.cpus ${prefix}.fastq.gz - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - fastqc: \$( fastqc --version | sed -e "s/FastQC v//g" ) - END_VERSIONS - """ - } else { - """ - [ ! -f ${prefix}_1.fastq.gz ] && ln -s ${reads[0]} ${prefix}_1.fastq.gz - [ ! -f ${prefix}_2.fastq.gz ] && ln -s ${reads[1]} ${prefix}_2.fastq.gz - fastqc $args --threads $task.cpus ${prefix}_1.fastq.gz ${prefix}_2.fastq.gz - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - fastqc: \$( fastqc --version | sed -e "s/FastQC v//g" ) - END_VERSIONS - """ - } + // Make list of old name and new name pairs to use for renaming in the bash while loop + def old_new_pairs = reads instanceof Path || reads.size() == 1 ? [[ reads, "${prefix}.${reads.extension}" ]] : reads.withIndex().collect { entry, index -> [ entry, "${prefix}_${index + 1}.${entry.extension}" ] } + def rename_to = old_new_pairs*.join(' ').join(' ') + def renamed_files = old_new_pairs.collect{ old_name, new_name -> new_name }.join(' ') + """ + printf "%s %s\\n" $rename_to | while read old_name new_name; do + [ -f "\${new_name}" ] || ln -s \$old_name \$new_name + done + fastqc $args --threads $task.cpus $renamed_files + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + fastqc: \$( fastqc --version | sed -e "s/FastQC v//g" ) + END_VERSIONS + """ stub: def prefix = task.ext.prefix ?: "${meta.id}" diff --git a/modules/nf-core/multiqc/main.nf b/modules/nf-core/multiqc/main.nf index a8159a57..68f66bea 100644 --- a/modules/nf-core/multiqc/main.nf +++ b/modules/nf-core/multiqc/main.nf @@ -1,7 +1,7 @@ process MULTIQC { label 'process_single' - conda (params.enable_conda ? 'bioconda::multiqc=1.13' : null) + conda "bioconda::multiqc=1.13" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' : 'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }" diff --git a/nextflow.config b/nextflow.config index a72d8c36..9ecebf05 100644 --- a/nextflow.config +++ b/nextflow.config @@ -39,7 +39,6 @@ params { validate_params = true show_hidden_params = false schema_ignore_params = 'genomes' - enable_conda = false // Config options @@ -81,7 +80,6 @@ try { profiles { debug { process.beforeScript = 'echo $HOSTNAME' } conda { - params.enable_conda = true conda.enabled = true docker.enabled = false singularity.enabled = false @@ -90,7 +88,6 @@ profiles { charliecloud.enabled = false } mamba { - params.enable_conda = true conda.enabled = true conda.useMamba = true docker.enabled = false diff --git a/nextflow_schema.json b/nextflow_schema.json index 317a7e21..7411c456 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -263,12 +263,6 @@ "description": "Show all params when using `--help`", "hidden": true, "help_text": "By default, parameters set as _hidden_ in the schema are not shown on the command line when a user runs with `--help`. Specifying this option will tell the pipeline to show all parameters." - }, - "enable_conda": { - "type": "boolean", - "description": "Run this workflow with Conda. You can also use '-profile conda' instead of providing this parameter.", - "hidden": true, - "fa_icon": "fas fa-bacon" } } } diff --git a/workflows/bacass.nf b/workflows/bacass.nf index 2f295b1c..f0a0c467 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -82,7 +82,7 @@ workflow BACASS { ch_versions = ch_versions.mix(FASTQC.out.versions.first()) CUSTOM_DUMPSOFTWAREVERSIONS ( - ch_versions.unique{ it.text }.collectFile(name: 'collated_versions.yml') + ch_versions.unique().collectFile(name: 'collated_versions.yml') ) // From 83950897dd32d6bb874389377de0c5e3d88e838e Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Fri, 28 Apr 2023 14:18:14 +0000 Subject: [PATCH 11/21] Template update for nf-core/tools version 2.8 --- .editorconfig | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 3 +- .github/workflows/awsfulltest.yml | 2 +- .github/workflows/awstest.yml | 2 +- .github/workflows/branch.yml | 2 +- .github/workflows/clean-up.yml | 24 ++++ .github/workflows/linting.yml | 2 +- .pre-commit-config.yaml | 5 + README.md | 74 ++++++---- bin/check_samplesheet.py | 3 - conf/base.config | 2 +- conf/igenomes.config | 8 ++ conf/test_full.config | 2 + docs/usage.md | 130 +++++------------- lib/NfcoreSchema.groovy | 4 +- lib/WorkflowBacass.groovy | 12 +- lib/WorkflowMain.groovy | 13 +- main.nf | 1 - modules.json | 4 +- modules/local/samplesheet_check.nf | 2 +- .../custom/dumpsoftwareversions/main.nf | 6 +- .../custom/dumpsoftwareversions/meta.yml | 2 + modules/nf-core/multiqc/main.nf | 6 +- modules/nf-core/multiqc/meta.yml | 3 +- nextflow.config | 29 +++- tower.yml | 5 + 27 files changed, 193 insertions(+), 157 deletions(-) create mode 100644 .github/workflows/clean-up.yml create mode 100644 .pre-commit-config.yaml create mode 100644 tower.yml diff --git a/.editorconfig b/.editorconfig index b78de6e6..b6b31907 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,7 +8,7 @@ trim_trailing_whitespace = true indent_size = 4 indent_style = space -[*.{md,yml,yaml,html,css,scss,js,cff}] +[*.{md,yml,yaml,html,css,scss,js}] indent_size = 2 # These files are edited and tested upstream in nf-core/modules diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index cb41a232..d73433ca 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -45,6 +45,6 @@ body: * Nextflow version _(eg. 22.10.1)_ * Hardware _(eg. HPC, Desktop, Cloud)_ * Executor _(eg. slurm, local, awsbatch)_ - * Container engine: _(e.g. Docker, Singularity, Conda, Podman, Shifter or Charliecloud)_ + * Container engine: _(e.g. Docker, Singularity, Conda, Podman, Shifter, Charliecloud, or Apptainer)_ * OS _(eg. CentOS Linux, macOS, Linux Mint)_ * Version of nf-core/bacass _(eg. 1.1, 1.5, 1.8.2)_ diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0c7eab4a..73441108 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -15,7 +15,8 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/baca - [ ] This comment contains a description of changes (with reason). - [ ] If you've fixed a bug or added code that should be tested, add tests! -- [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md)- [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. +- [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/bacass/tree/master/.github/CONTRIBUTING.md) +- [ ] If necessary, also make a PR on the nf-core/bacass _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository. - [ ] Make sure your code lints (`nf-core lint`). - [ ] Ensure the test suite passes (`nextflow run . -profile test,docker --outdir `). - [ ] Usage Documentation in `docs/usage.md` is updated. diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index 0e1f0216..c0892e5f 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Launch workflow via tower - uses: nf-core/tower-action@v3 + uses: seqeralabs/action-tower-launch@v1 # TODO nf-core: You can customise AWS full pipeline tests as required # Add full size test data (but still relatively small datasets for few samples) # on the `test_full.config` test runs with only one set of parameters diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index 5ad2d9b0..c21cbde8 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -12,7 +12,7 @@ jobs: steps: # Launch workflow using Tower CLI tool action - name: Launch workflow via tower - uses: nf-core/tower-action@v3 + uses: seqeralabs/action-tower-launch@v1 with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index aaaa127d..b711a8eb 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -13,7 +13,7 @@ jobs: - name: Check PRs if: github.repository == 'nf-core/bacass' run: | - { [[ ${{github.event.pull_request.head.repo.full_name }} == nf-core/bacass ]] && [[ $GITHUB_HEAD_REF = "dev" ]]; } || [[ $GITHUB_HEAD_REF == "patch" ]] + { [[ ${{github.event.pull_request.head.repo.full_name }} == nf-core/bacass ]] && [[ $GITHUB_HEAD_REF == "dev" ]]; } || [[ $GITHUB_HEAD_REF == "patch" ]] # If the above check failed, post a comment on the PR explaining the failure # NOTE - this doesn't currently work if the PR is coming from a fork, due to limitations in GitHub actions secrets diff --git a/.github/workflows/clean-up.yml b/.github/workflows/clean-up.yml new file mode 100644 index 00000000..694e90ec --- /dev/null +++ b/.github/workflows/clean-up.yml @@ -0,0 +1,24 @@ +name: "Close user-tagged issues and PRs" +on: + schedule: + - cron: "0 0 * * 0" # Once a week + +jobs: + clean-up: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/stale@v7 + with: + stale-issue-message: "This issue has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor. Remove stale label or add a comment otherwise this issue will be closed in 20 days." + stale-pr-message: "This PR has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor. Remove stale label or add a comment if it is still useful." + close-issue-message: "This issue was closed because it has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor and then staled for 20 days with no activity." + days-before-stale: 30 + days-before-close: 20 + days-before-pr-close: -1 + any-of-labels: "awaiting-changes,awaiting-feedback" + exempt-issue-labels: "WIP" + exempt-pr-labels: "WIP" + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 858d622e..888cb4bc 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -78,7 +78,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: "3.7" + python-version: "3.8" architecture: "x64" - name: Install dependencies diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..0c31cdb9 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,5 @@ +repos: + - repo: https://github.com/pre-commit/mirrors-prettier + rev: "v2.7.1" + hooks: + - id: prettier diff --git a/README.md b/README.md index 5aab6a15..e84435a1 100644 --- a/README.md +++ b/README.md @@ -8,57 +8,71 @@ [![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) [![Launch on Nextflow Tower](https://img.shields.io/badge/Launch%20%F0%9F%9A%80-Nextflow%20Tower-%234256e7)](https://tower.nf/launch?pipeline=https://github.com/nf-core/bacass) -[![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23bacass-4A154B?labelColor=000000&logo=slack)](https://nfcore.slack.com/channels/bacass)[![Follow on Twitter](http://img.shields.io/badge/twitter-%40nf__core-1DA1F2?labelColor=000000&logo=twitter)](https://twitter.com/nf_core)[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?labelColor=000000&logo=youtube)](https://www.youtube.com/c/nf-core) +[![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23bacass-4A154B?labelColor=000000&logo=slack)](https://nfcore.slack.com/channels/bacass)[![Follow on Twitter](http://img.shields.io/badge/twitter-%40nf__core-1DA1F2?labelColor=000000&logo=twitter)](https://twitter.com/nf_core)[![Follow on Mastodon](https://img.shields.io/badge/mastodon-nf__core-6364ff?labelColor=FFFFFF&logo=mastodon)](https://mstdn.science/@nf_core)[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?labelColor=000000&logo=youtube)](https://www.youtube.com/c/nf-core) ## Introduction - +**nf-core/bacass** is a bioinformatics pipeline that ... -**nf-core/bacass** is a bioinformatics best-practice analysis pipeline for Simple bacterial assembly and annotation. - -The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It uses Docker/Singularity containers making installation trivial and results highly reproducible. The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. Where possible, these processes have been submitted to and installed from [nf-core/modules](https://github.com/nf-core/modules) in order to make them available to all nf-core pipelines, and to everyone within the Nextflow community! - - - -On release, automated continuous integration tests run the pipeline on a full-sized dataset on the AWS cloud infrastructure. This ensures that the pipeline runs on AWS, has sensible resource allocation defaults set to run on real-world datasets, and permits the persistent storage of results to benchmark between pipeline releases and other analysis sources.The results obtained from the full-sized test can be viewed on the [nf-core website](https://nf-co.re/bacass/results). - -## Pipeline summary + + 1. Read QC ([`FastQC`](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/)) 2. Present QC for raw reads ([`MultiQC`](http://multiqc.info/)) -## Quick Start +## Usage + +> **Note** +> If you are new to Nextflow and nf-core, please refer to [this page](https://nf-co.re/docs/usage/installation) on how +> to set-up Nextflow. Make sure to [test your setup](https://nf-co.re/docs/usage/introduction#how-to-run-a-pipeline) +> with `-profile test` before running the workflow on actual data. + + - Note that some form of configuration will be needed so that Nextflow knows how to fetch the required software. This is usually done in the form of a config profile (`YOURPROFILE` in the example command above). You can chain multiple config profiles in a comma-separated string. +Now, you can run the pipeline using: - > - The pipeline comes with config profiles called `docker`, `singularity`, `podman`, `shifter`, `charliecloud` and `conda` which instruct the pipeline to use the named tool for software management. For example, `-profile test,docker`. - > - Please check [nf-core/configs](https://github.com/nf-core/configs#documentation) to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use `-profile ` in your command. This will enable either `docker` or `singularity` and set the appropriate execution settings for your local compute environment. - > - If you are using `singularity`, please use the [`nf-core download`](https://nf-co.re/tools/#downloading-pipelines-for-offline-use) command to download images first, before running the pipeline. Setting the [`NXF_SINGULARITY_CACHEDIR` or `singularity.cacheDir`](https://www.nextflow.io/docs/latest/singularity.html?#singularity-docker-hub) Nextflow options enables you to store and re-use the images from a central location for future pipeline runs. - > - If you are using `conda`, it is highly recommended to use the [`NXF_CONDA_CACHEDIR` or `conda.cacheDir`](https://www.nextflow.io/docs/latest/conda.html) settings to store the environments in a central location for future pipeline runs. + -4. Start running your own analysis! +```bash +nextflow run nf-core/bacass \ + -profile \ + --input samplesheet.csv \ + --outdir +``` - +> **Warning:** +> Please provide pipeline parameters via the CLI or Nextflow `-params-file` option. Custom config files including those +> provided by the `-c` Nextflow option can be used to provide any configuration _**except for parameters**_; +> see [docs](https://nf-co.re/usage/configuration#custom-configuration-files). - ```bash - nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile - ``` +For more details, please refer to the [usage documentation](https://nf-co.re/bacass/usage) and the [parameter documentation](https://nf-co.re/bacass/parameters). -## Documentation +## Pipeline output -The nf-core/bacass pipeline comes with documentation about the pipeline [usage](https://nf-co.re/bacass/usage), [parameters](https://nf-co.re/bacass/parameters) and [output](https://nf-co.re/bacass/output). +To see the the results of a test run with a full size dataset refer to the [results](https://nf-co.re/bacass/results) tab on the nf-core website pipeline page. +For more details about the output files and reports, please refer to the +[output documentation](https://nf-co.re/bacass/output). ## Credits diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py index 11b15572..4a758fe0 100755 --- a/bin/check_samplesheet.py +++ b/bin/check_samplesheet.py @@ -158,9 +158,6 @@ def sniff_format(handle): peek = read_head(handle) handle.seek(0) sniffer = csv.Sniffer() - if not sniffer.has_header(peek): - logger.critical("The given sample sheet does not appear to contain a header.") - sys.exit(1) dialect = sniffer.sniff(peek) return dialect diff --git a/conf/base.config b/conf/base.config index afca6212..f44a2fae 100644 --- a/conf/base.config +++ b/conf/base.config @@ -15,7 +15,7 @@ process { memory = { check_max( 6.GB * task.attempt, 'memory' ) } time = { check_max( 4.h * task.attempt, 'time' ) } - errorStrategy = { task.exitStatus in [143,137,104,134,139] ? 'retry' : 'finish' } + errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' } maxRetries = 1 maxErrors = '-1' diff --git a/conf/igenomes.config b/conf/igenomes.config index 7a1b3ac6..3f114377 100644 --- a/conf/igenomes.config +++ b/conf/igenomes.config @@ -36,6 +36,14 @@ params { macs_gsize = "2.7e9" blacklist = "${projectDir}/assets/blacklists/hg38-blacklist.bed" } + 'CHM13' { + fasta = "${params.igenomes_base}/Homo_sapiens/UCSC/CHM13/Sequence/WholeGenomeFasta/genome.fa" + bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/CHM13/Sequence/BWAIndex/" + bwamem2 = "${params.igenomes_base}/Homo_sapiens/UCSC/CHM13/Sequence/BWAmem2Index/" + gtf = "${params.igenomes_base}/Homo_sapiens/NCBI/CHM13/Annotation/Genes/genes.gtf" + gff = "ftp://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/009/914/755/GCF_009914755.1_T2T-CHM13v2.0/GCF_009914755.1_T2T-CHM13v2.0_genomic.gff.gz" + mito_name = "chrM" + } 'GRCm38' { fasta = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/WholeGenomeFasta/genome.fa" bwa = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/BWAIndex/version0.6.0/" diff --git a/conf/test_full.config b/conf/test_full.config index d35a88b9..49a3746e 100644 --- a/conf/test_full.config +++ b/conf/test_full.config @@ -10,6 +10,8 @@ ---------------------------------------------------------------------------------------- */ +cleanup = true + params { config_profile_name = 'Full test profile' config_profile_description = 'Full test dataset to check pipeline function' diff --git a/docs/usage.md b/docs/usage.md index d5602abb..d2ff3701 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -71,6 +71,29 @@ work # Directory containing the nextflow working files # Other nextflow hidden files, eg. history of pipeline runs and old logs. ``` +If you wish to repeatedly use the same parameters for multiple runs, rather than specifying each flag in the command, you can specify these in a params file. + +Pipeline settings can be provided in a `yaml` or `json` file via `-params-file `. + +> ⚠️ Do not use `-c ` to specify parameters as this will result in errors. Custom config files specified with `-c` must only be used for [tuning process resource specifications](https://nf-co.re/docs/usage/configuration#tuning-workflow-resources), other infrastructural tweaks (such as output directories), or module arguments (args). +> The above pipeline run specified with a params file in yaml format: + +```bash +nextflow run nf-core/bacass -profile docker -params-file params.yaml +``` + +with `params.yaml` containing: + +```yaml +input: './samplesheet.csv' +outdir: './results/' +genome: 'GRCh37' +input: 'data' +<...> +``` + +You can also generate such `YAML`/`JSON` files via [nf-core/launch](https://nf-co.re/launch). + ### Updating the pipeline When you run the above command, Nextflow automatically pulls the pipeline code from GitHub and stores it as a cached version. When running the pipeline after this, it will always use the cached version if available - even if the pipeline has been updated since. To make sure that you're running the latest version of the pipeline, make sure that you regularly update the cached version of the pipeline: @@ -87,6 +110,10 @@ First, go to the [nf-core/bacass releases page](https://github.com/nf-core/bacas This version number will be logged in reports when you run the pipeline, so that you'll know what you used when you look back in the future. For example, at the bottom of the MultiQC reports. +To further assist in reproducbility, you can use share and re-use [parameter files](#running-the-pipeline) to repeat pipeline runs with the same settings without having to write out a command with every single parameter. + +> 💡 If you wish to share such profile (such as upload as supplementary material for academic publications), make sure to NOT include cluster specific paths to files, nor institutional specific profiles. + ## Core Nextflow arguments > **NB:** These options are part of Nextflow and use a _single_ hyphen (pipeline parameters use a double-hyphen). @@ -95,7 +122,7 @@ This version number will be logged in reports when you run the pipeline, so that Use this parameter to choose a configuration profile. Profiles can give configuration presets for different compute environments. -Several generic profiles are bundled with the pipeline which instruct the pipeline to use software packaged using different methods (Docker, Singularity, Podman, Shifter, Charliecloud, Conda) - see below. +Several generic profiles are bundled with the pipeline which instruct the pipeline to use software packaged using different methods (Docker, Singularity, Podman, Shifter, Charliecloud, Apptainer, Conda) - see below. > We highly recommend the use of Docker or Singularity containers for full pipeline reproducibility, however when this is not possible, Conda is also supported. @@ -119,8 +146,10 @@ If `-profile` is not specified, the pipeline will run locally and expect all sof - A generic configuration profile to be used with [Shifter](https://nersc.gitlab.io/development/shifter/how-to-use/) - `charliecloud` - A generic configuration profile to be used with [Charliecloud](https://hpc.github.io/charliecloud/) +- `apptainer` + - A generic configuration profile to be used with [Apptainer](https://apptainer.org/) - `conda` - - A generic configuration profile to be used with [Conda](https://conda.io/docs/). Please only use Conda as a last resort i.e. when it's not possible to run the pipeline with Docker, Singularity, Podman, Shifter or Charliecloud. + - A generic configuration profile to be used with [Conda](https://conda.io/docs/). Please only use Conda as a last resort i.e. when it's not possible to run the pipeline with Docker, Singularity, Podman, Shifter, Charliecloud, or Apptainer. ### `-resume` @@ -138,102 +167,19 @@ Specify the path to a specific config file (this is a core Nextflow command). Se Whilst the default requirements set within the pipeline will hopefully work for most people and with most input data, you may find that you want to customise the compute resources that the pipeline requests. Each step in the pipeline has a default set of requirements for number of CPUs, memory and time. For most of the steps in the pipeline, if the job exits with any of the error codes specified [here](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/base.config#L18) it will automatically be resubmitted with higher requests (2 x original, then 3 x original). If it still fails after the third attempt then the pipeline execution is stopped. -For example, if the nf-core/rnaseq pipeline is failing after multiple re-submissions of the `STAR_ALIGN` process due to an exit code of `137` this would indicate that there is an out of memory issue: - -```console -[62/149eb0] NOTE: Process `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)` terminated with an error exit status (137) -- Execution is retried (1) -Error executing process > 'NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)' - -Caused by: - Process `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN (WT_REP1)` terminated with an error exit status (137) - -Command executed: - STAR \ - --genomeDir star \ - --readFilesIn WT_REP1_trimmed.fq.gz \ - --runThreadN 2 \ - --outFileNamePrefix WT_REP1. \ - - -Command exit status: - 137 - -Command output: - (empty) - -Command error: - .command.sh: line 9: 30 Killed STAR --genomeDir star --readFilesIn WT_REP1_trimmed.fq.gz --runThreadN 2 --outFileNamePrefix WT_REP1. -Work dir: - /home/pipelinetest/work/9d/172ca5881234073e8d76f2a19c88fb - -Tip: you can replicate the issue by changing to the process work dir and entering the command `bash .command.run` -``` - -#### For beginners - -A first step to bypass this error, you could try to increase the amount of CPUs, memory, and time for the whole pipeline. Therefor you can try to increase the resource for the parameters `--max_cpus`, `--max_memory`, and `--max_time`. Based on the error above, you have to increase the amount of memory. Therefore you can go to the [parameter documentation of rnaseq](https://nf-co.re/rnaseq/3.9/parameters) and scroll down to the `show hidden parameter` button to get the default value for `--max_memory`. In this case 128GB, you than can try to run your pipeline again with `--max_memory 200GB -resume` to skip all process, that were already calculated. If you can not increase the resource of the complete pipeline, you can try to adapt the resource for a single process as mentioned below. - -#### Advanced option on process level - -To bypass this error you would need to find exactly which resources are set by the `STAR_ALIGN` process. The quickest way is to search for `process STAR_ALIGN` in the [nf-core/rnaseq Github repo](https://github.com/nf-core/rnaseq/search?q=process+STAR_ALIGN). -We have standardised the structure of Nextflow DSL2 pipelines such that all module files will be present in the `modules/` directory and so, based on the search results, the file we want is `modules/nf-core/star/align/main.nf`. -If you click on the link to that file you will notice that there is a `label` directive at the top of the module that is set to [`label process_high`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/modules/nf-core/software/star/align/main.nf#L9). -The [Nextflow `label`](https://www.nextflow.io/docs/latest/process.html#label) directive allows us to organise workflow processes in separate groups which can be referenced in a configuration file to select and configure subset of processes having similar computing requirements. -The default values for the `process_high` label are set in the pipeline's [`base.config`](https://github.com/nf-core/rnaseq/blob/4c27ef5610c87db00c3c5a3eed10b1d161abf575/conf/base.config#L33-L37) which in this case is defined as 72GB. -Providing you haven't set any other standard nf-core parameters to **cap** the [maximum resources](https://nf-co.re/usage/configuration#max-resources) used by the pipeline then we can try and bypass the `STAR_ALIGN` process failure by creating a custom config file that sets at least 72GB of memory, in this case increased to 100GB. -The custom config below can then be provided to the pipeline via the [`-c`](#-c) parameter as highlighted in previous sections. - -```nextflow -process { - withName: 'NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN' { - memory = 100.GB - } -} -``` - -> **NB:** We specify the full process name i.e. `NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN` in the config file because this takes priority over the short name (`STAR_ALIGN`) and allows existing configuration using the full process name to be correctly overridden. -> -> If you get a warning suggesting that the process selector isn't recognised check that the process name has been specified correctly. - -### Updating containers (advanced users) - -The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. If for some reason you need to use a different version of a particular tool with the pipeline then you just need to identify the `process` name and override the Nextflow `container` definition for that process using the `withName` declaration. For example, in the [nf-core/viralrecon](https://nf-co.re/viralrecon) pipeline a tool called [Pangolin](https://github.com/cov-lineages/pangolin) has been used during the COVID-19 pandemic to assign lineages to SARS-CoV-2 genome sequenced samples. Given that the lineage assignments change quite frequently it doesn't make sense to re-release the nf-core/viralrecon everytime a new version of Pangolin has been released. However, you can override the default container used by the pipeline by creating a custom config file and passing it as a command-line argument via `-c custom.config`. - -1. Check the default version used by the pipeline in the module file for [Pangolin](https://github.com/nf-core/viralrecon/blob/a85d5969f9025409e3618d6c280ef15ce417df65/modules/nf-core/software/pangolin/main.nf#L14-L19) -2. Find the latest version of the Biocontainer available on [Quay.io](https://quay.io/repository/biocontainers/pangolin?tag=latest&tab=tags) -3. Create the custom config accordingly: - - - For Docker: +To change the resource requests, please see the [max resources](https://nf-co.re/docs/usage/configuration#max-resources) and [tuning workflow resources](https://nf-co.re/docs/usage/configuration#tuning-workflow-resources) section of the nf-core website. - ```nextflow - process { - withName: PANGOLIN { - container = 'quay.io/biocontainers/pangolin:3.0.5--pyhdfd78af_0' - } - } - ``` +### Custom Containers - - For Singularity: +In some cases you may wish to change which container or conda environment a step of the pipeline uses for a particular tool. By default nf-core pipelines use containers and software from the [biocontainers](https://biocontainers.pro/) or [bioconda](https://bioconda.github.io/) projects. However in some cases the pipeline specified version maybe out of date. - ```nextflow - process { - withName: PANGOLIN { - container = 'https://depot.galaxyproject.org/singularity/pangolin:3.0.5--pyhdfd78af_0' - } - } - ``` +To use a different container from the default container or conda environment specified in a pipeline, please see the [updating tool versions](https://nf-co.re/docs/usage/configuration#updating-tool-versions) section of the nf-core website. - - For Conda: +### Custom Tool Arguments - ```nextflow - process { - withName: PANGOLIN { - conda = 'bioconda::pangolin=3.0.5' - } - } - ``` +A pipeline might not always support every possible argument or option of a particular tool used in pipeline. Fortunately, nf-core pipelines provide some freedom to users to insert additional parameters that the pipeline does not include by default. -> **NB:** If you wish to periodically update individual tool-specific results (e.g. Pangolin) generated by the pipeline then you must ensure to keep the `work/` directory otherwise the `-resume` ability of the pipeline will be compromised and it will restart from scratch. +To learn how to provide additional arguments to a particular tool of the pipeline, please see the [customising tool arguments](https://nf-co.re/docs/usage/configuration#customising-tool-arguments) section of the nf-core website. ### nf-core/configs diff --git a/lib/NfcoreSchema.groovy b/lib/NfcoreSchema.groovy index 33cd4f6e..9b34804d 100755 --- a/lib/NfcoreSchema.groovy +++ b/lib/NfcoreSchema.groovy @@ -2,6 +2,7 @@ // This file holds several functions used to perform JSON parameter validation, help and summary rendering for the nf-core pipeline template. // +import nextflow.Nextflow import org.everit.json.schema.Schema import org.everit.json.schema.loader.SchemaLoader import org.everit.json.schema.ValidationException @@ -83,6 +84,7 @@ class NfcoreSchema { 'stub-run', 'test', 'w', + 'with-apptainer', 'with-charliecloud', 'with-conda', 'with-dag', @@ -177,7 +179,7 @@ class NfcoreSchema { } if (has_error) { - System.exit(1) + Nextflow.error('Exiting!') } } diff --git a/lib/WorkflowBacass.groovy b/lib/WorkflowBacass.groovy index c8f87332..4d1261de 100755 --- a/lib/WorkflowBacass.groovy +++ b/lib/WorkflowBacass.groovy @@ -2,6 +2,7 @@ // This file holds several functions specific to the workflow/bacass.nf in the nf-core/bacass pipeline // +import nextflow.Nextflow import groovy.text.SimpleTemplateEngine class WorkflowBacass { @@ -14,8 +15,7 @@ class WorkflowBacass { if (!params.fasta) { - log.error "Genome fasta file not specified with e.g. '--fasta genome.fa' or via a detectable config file." - System.exit(1) + Nextflow.error "Genome fasta file not specified with e.g. '--fasta genome.fa' or via a detectable config file." } } @@ -61,17 +61,19 @@ class WorkflowBacass { def description_html = engine.createTemplate(methods_text).make(meta) return description_html - }// + } + + // // Exit pipeline if incorrect --genome key provided // private static void genomeExistsError(params, log) { if (params.genomes && params.genome && !params.genomes.containsKey(params.genome)) { - log.error "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" + + def error_string = "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" + " Genome '${params.genome}' not found in any config files provided to the pipeline.\n" + " Currently, the available genome keys are:\n" + " ${params.genomes.keySet().join(", ")}\n" + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" - System.exit(1) + Nextflow.error(error_string) } } } diff --git a/lib/WorkflowMain.groovy b/lib/WorkflowMain.groovy index 2ec0947a..b277503a 100755 --- a/lib/WorkflowMain.groovy +++ b/lib/WorkflowMain.groovy @@ -2,6 +2,8 @@ // This file holds several functions specific to the main.nf workflow in the nf-core/bacass pipeline // +import nextflow.Nextflow + class WorkflowMain { // @@ -21,7 +23,7 @@ class WorkflowMain { // // Generate help string // - public static String help(workflow, params, log) { + public static String help(workflow, params) { def command = "nextflow run ${workflow.manifest.name} --input samplesheet.csv --genome GRCh37 -profile docker" def help_string = '' help_string += NfcoreTemplate.logo(workflow, params.monochrome_logs) @@ -34,7 +36,7 @@ class WorkflowMain { // // Generate parameter summary log string // - public static String paramsSummaryLog(workflow, params, log) { + public static String paramsSummaryLog(workflow, params) { def summary_log = '' summary_log += NfcoreTemplate.logo(workflow, params.monochrome_logs) summary_log += NfcoreSchema.paramsSummaryLog(workflow, params) @@ -49,7 +51,7 @@ class WorkflowMain { public static void initialise(workflow, params, log) { // Print help to screen if required if (params.help) { - log.info help(workflow, params, log) + log.info help(workflow, params) System.exit(0) } @@ -61,7 +63,7 @@ class WorkflowMain { } // Print parameter summary log to screen - log.info paramsSummaryLog(workflow, params, log) + log.info paramsSummaryLog(workflow, params) // Validate workflow parameters via the JSON schema if (params.validate_params) { @@ -81,8 +83,7 @@ class WorkflowMain { // Check input has been provided if (!params.input) { - log.error "Please provide an input samplesheet to the pipeline e.g. '--input samplesheet.csv'" - System.exit(1) + Nextflow.error("Please provide an input samplesheet to the pipeline e.g. '--input samplesheet.csv'") } } // diff --git a/main.nf b/main.nf index 3e800210..6b776dd9 100644 --- a/main.nf +++ b/main.nf @@ -4,7 +4,6 @@ nf-core/bacass ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Github : https://github.com/nf-core/bacass - Website: https://nf-co.re/bacass Slack : https://nfcore.slack.com/channels/bacass ---------------------------------------------------------------------------------------- diff --git a/modules.json b/modules.json index c5beae30..aff373a9 100644 --- a/modules.json +++ b/modules.json @@ -7,7 +7,7 @@ "nf-core": { "custom/dumpsoftwareversions": { "branch": "master", - "git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c", + "git_sha": "76cc4938c1f6ea5c7d83fed1eeffc146787f9543", "installed_by": ["modules"] }, "fastqc": { @@ -17,7 +17,7 @@ }, "multiqc": { "branch": "master", - "git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c", + "git_sha": "f2d63bd5b68925f98f572eed70993d205cc694b7", "installed_by": ["modules"] } } diff --git a/modules/local/samplesheet_check.nf b/modules/local/samplesheet_check.nf index c24ecd64..f2b65abc 100644 --- a/modules/local/samplesheet_check.nf +++ b/modules/local/samplesheet_check.nf @@ -5,7 +5,7 @@ process SAMPLESHEET_CHECK { conda "conda-forge::python=3.8.3" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://depot.galaxyproject.org/singularity/python:3.8.3' : - 'quay.io/biocontainers/python:3.8.3' }" + 'biocontainers/python:3.8.3' }" input: path samplesheet diff --git a/modules/nf-core/custom/dumpsoftwareversions/main.nf b/modules/nf-core/custom/dumpsoftwareversions/main.nf index 3df21765..800a6099 100644 --- a/modules/nf-core/custom/dumpsoftwareversions/main.nf +++ b/modules/nf-core/custom/dumpsoftwareversions/main.nf @@ -2,10 +2,10 @@ process CUSTOM_DUMPSOFTWAREVERSIONS { label 'process_single' // Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container - conda "bioconda::multiqc=1.13" + conda "bioconda::multiqc=1.14" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' : - 'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }" + 'https://depot.galaxyproject.org/singularity/multiqc:1.14--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.14--pyhdfd78af_0' }" input: path versions diff --git a/modules/nf-core/custom/dumpsoftwareversions/meta.yml b/modules/nf-core/custom/dumpsoftwareversions/meta.yml index 60b546a0..c32657de 100644 --- a/modules/nf-core/custom/dumpsoftwareversions/meta.yml +++ b/modules/nf-core/custom/dumpsoftwareversions/meta.yml @@ -1,7 +1,9 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/yaml-schema.json name: custom_dumpsoftwareversions description: Custom module used to dump software versions within the nf-core pipeline template keywords: - custom + - dump - version tools: - custom: diff --git a/modules/nf-core/multiqc/main.nf b/modules/nf-core/multiqc/main.nf index 68f66bea..4b604749 100644 --- a/modules/nf-core/multiqc/main.nf +++ b/modules/nf-core/multiqc/main.nf @@ -1,10 +1,10 @@ process MULTIQC { label 'process_single' - conda "bioconda::multiqc=1.13" + conda "bioconda::multiqc=1.14" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' : - 'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }" + 'https://depot.galaxyproject.org/singularity/multiqc:1.14--pyhdfd78af_0' : + 'quay.io/biocontainers/multiqc:1.14--pyhdfd78af_0' }" input: path multiqc_files, stageAs: "?/*" diff --git a/modules/nf-core/multiqc/meta.yml b/modules/nf-core/multiqc/meta.yml index ebc29b27..f93b5ee5 100644 --- a/modules/nf-core/multiqc/meta.yml +++ b/modules/nf-core/multiqc/meta.yml @@ -1,3 +1,4 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/yaml-schema.json name: MultiQC description: Aggregate results from bioinformatics analyses across many samples into a single report keywords: @@ -37,7 +38,7 @@ output: description: MultiQC report file pattern: "multiqc_report.html" - data: - type: dir + type: directory description: MultiQC data dir pattern: "multiqc_data" - plots: diff --git a/nextflow.config b/nextflow.config index 9ecebf05..5202604a 100644 --- a/nextflow.config +++ b/nextflow.config @@ -78,7 +78,11 @@ try { profiles { - debug { process.beforeScript = 'echo $HOSTNAME' } + debug { + dumpHashes = true + process.beforeScript = 'echo $HOSTNAME' + cleanup = false + } conda { conda.enabled = true docker.enabled = false @@ -86,6 +90,7 @@ profiles { podman.enabled = false shifter.enabled = false charliecloud.enabled = false + apptainer.enabled = false } mamba { conda.enabled = true @@ -95,14 +100,18 @@ profiles { podman.enabled = false shifter.enabled = false charliecloud.enabled = false + apptainer.enabled = false } docker { docker.enabled = true + docker.registry = 'quay.io' docker.userEmulation = true + conda.enabled = false singularity.enabled = false podman.enabled = false shifter.enabled = false charliecloud.enabled = false + apptainer.enabled = false } arm { docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64' @@ -110,31 +119,49 @@ profiles { singularity { singularity.enabled = true singularity.autoMounts = true + conda.enabled = false docker.enabled = false podman.enabled = false shifter.enabled = false charliecloud.enabled = false + apptainer.enabled = false } podman { podman.enabled = true + podman.registry = 'quay.io' + conda.enabled = false docker.enabled = false singularity.enabled = false shifter.enabled = false charliecloud.enabled = false + apptainer.enabled = false } shifter { shifter.enabled = true + conda.enabled = false docker.enabled = false singularity.enabled = false podman.enabled = false charliecloud.enabled = false + apptainer.enabled = false } charliecloud { charliecloud.enabled = true + conda.enabled = false docker.enabled = false singularity.enabled = false podman.enabled = false shifter.enabled = false + apptainer.enabled = false + } + apptainer { + apptainer.enabled = true + conda.enabled = false + docker.enabled = false + singularity.enabled = false + podman.enabled = false + shifter.enabled = false + charliecloud.enabled = false } gitpod { executor.name = 'local' diff --git a/tower.yml b/tower.yml new file mode 100644 index 00000000..787aedfe --- /dev/null +++ b/tower.yml @@ -0,0 +1,5 @@ +reports: + multiqc_report.html: + display: "MultiQC HTML report" + samplesheet.csv: + display: "Auto-created samplesheet with collated metadata and FASTQ paths" From 73a07e93c36e5edc84f8a87775c6a81a54aa37df Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Fri, 30 Jun 2023 16:12:48 +0000 Subject: [PATCH 12/21] Template update for nf-core/tools version 2.9 --- .github/CONTRIBUTING.md | 1 - .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/workflows/awsfulltest.yml | 11 +- .github/workflows/awstest.yml | 10 +- .github/workflows/ci.yml | 2 +- .gitpod.yml | 5 + CITATIONS.md | 6 + README.md | 6 +- assets/methods_description_template.yml | 12 +- assets/multiqc_config.yml | 4 +- assets/nf-core-bacass_logo_light.png | Bin 11313 -> 71089 bytes assets/slackreport.json | 2 +- conf/test_full.config | 2 - docs/usage.md | 6 +- lib/NfcoreSchema.groovy | 530 ------------------------ lib/NfcoreTemplate.groovy | 2 +- lib/WorkflowBacass.groovy | 45 +- lib/WorkflowMain.groovy | 37 -- main.nf | 16 + nextflow.config | 52 ++- nextflow_schema.json | 36 +- workflows/bacass.nf | 25 +- 22 files changed, 175 insertions(+), 637 deletions(-) delete mode 100755 lib/NfcoreSchema.groovy diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 33b89e71..b9535f70 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -116,4 +116,3 @@ To get started: Devcontainer specs: - [DevContainer config](.devcontainer/devcontainer.json) -- [Dockerfile](.devcontainer/Dockerfile) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d73433ca..8f319341 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -42,7 +42,7 @@ body: attributes: label: System information description: | - * Nextflow version _(eg. 22.10.1)_ + * Nextflow version _(eg. 23.04.0)_ * Hardware _(eg. HPC, Desktop, Cloud)_ * Executor _(eg. slurm, local, awsbatch)_ * Container engine: _(e.g. Docker, Singularity, Conda, Podman, Shifter, Charliecloud, or Apptainer)_ diff --git a/.github/workflows/awsfulltest.yml b/.github/workflows/awsfulltest.yml index c0892e5f..eac50545 100644 --- a/.github/workflows/awsfulltest.yml +++ b/.github/workflows/awsfulltest.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Launch workflow via tower - uses: seqeralabs/action-tower-launch@v1 + uses: seqeralabs/action-tower-launch@v2 # TODO nf-core: You can customise AWS full pipeline tests as required # Add full size test data (but still relatively small datasets for few samples) # on the `test_full.config` test runs with only one set of parameters @@ -22,13 +22,18 @@ jobs: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} + revision: ${{ github.sha }} workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/bacass/work-${{ github.sha }} parameters: | { + "hook_url": "${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}", "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-${{ github.sha }}" } - profiles: test_full,aws_tower + profiles: test_full + - uses: actions/upload-artifact@v3 with: name: Tower debug log file - path: tower_action_*.log + path: | + tower_action_*.log + tower_action_*.json diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index c21cbde8..5ff8ad1a 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -12,18 +12,22 @@ jobs: steps: # Launch workflow using Tower CLI tool action - name: Launch workflow via tower - uses: seqeralabs/action-tower-launch@v1 + uses: seqeralabs/action-tower-launch@v2 with: workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} + revision: ${{ github.sha }} workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/bacass/work-${{ github.sha }} parameters: | { "outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/bacass/results-test-${{ github.sha }}" } - profiles: test,aws_tower + profiles: test + - uses: actions/upload-artifact@v3 with: name: Tower debug log file - path: tower_action_*.log + path: | + tower_action_*.log + tower_action_*.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c91c0fb8..c29f9a8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: NXF_VER: - - "22.10.1" + - "23.04.0" - "latest-everything" steps: - name: Check out pipeline code diff --git a/.gitpod.yml b/.gitpod.yml index 85d95ecc..25488dcc 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,4 +1,9 @@ image: nfcore/gitpod:latest +tasks: + - name: Update Nextflow and setup pre-commit + command: | + pre-commit install --install-hooks + nextflow self-update vscode: extensions: # based on nf-core.nf-core-extensionpack diff --git a/CITATIONS.md b/CITATIONS.md index e3a69e9b..4954dd4b 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -12,7 +12,10 @@ - [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) + > Andrews, S. (2010). FastQC: A Quality Control Tool for High Throughput Sequence Data [Online]. Available online https://www.bioinformatics.babraham.ac.uk/projects/fastqc/. + - [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/) + > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924. ## Software packaging/containerisation tools @@ -31,5 +34,8 @@ - [Docker](https://dl.acm.org/doi/10.5555/2600239.2600241) + > Merkel, D. (2014). Docker: lightweight linux containers for consistent development and deployment. Linux Journal, 2014(239), 2. doi: 10.5555/2600239.2600241. + - [Singularity](https://pubmed.ncbi.nlm.nih.gov/28494014/) + > Kurtzer GM, Sochat V, Bauer MW. Singularity: Scientific containers for mobility of compute. PLoS One. 2017 May 11;12(5):e0177459. doi: 10.1371/journal.pone.0177459. eCollection 2017. PubMed PMID: 28494014; PubMed Central PMCID: PMC5426675. diff --git a/README.md b/README.md index e84435a1..b39aae8b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?labelColor=000000&logo=Amazon%20AWS)](https://nf-co.re/bacass/results)[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8?labelColor=000000)](https://doi.org/10.5281/zenodo.XXXXXXX) -[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A522.10.1-23aa62.svg)](https://www.nextflow.io/) +[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A523.04.0-23aa62.svg)](https://www.nextflow.io/) [![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?labelColor=000000&logo=anaconda)](https://docs.conda.io/en/latest/) [![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?labelColor=000000&logo=docker)](https://www.docker.com/) [![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) @@ -66,11 +66,11 @@ nextflow run nf-core/bacass \ > provided by the `-c` Nextflow option can be used to provide any configuration _**except for parameters**_; > see [docs](https://nf-co.re/usage/configuration#custom-configuration-files). -For more details, please refer to the [usage documentation](https://nf-co.re/bacass/usage) and the [parameter documentation](https://nf-co.re/bacass/parameters). +For more details and further functionality, please refer to the [usage documentation](https://nf-co.re/bacass/usage) and the [parameter documentation](https://nf-co.re/bacass/parameters). ## Pipeline output -To see the the results of a test run with a full size dataset refer to the [results](https://nf-co.re/bacass/results) tab on the nf-core website pipeline page. +To see the results of an example test run with a full size dataset refer to the [results](https://nf-co.re/bacass/results) tab on the nf-core website pipeline page. For more details about the output files and reports, please refer to the [output documentation](https://nf-co.re/bacass/output). diff --git a/assets/methods_description_template.yml b/assets/methods_description_template.yml index a19f3abb..b0024760 100644 --- a/assets/methods_description_template.yml +++ b/assets/methods_description_template.yml @@ -3,17 +3,21 @@ description: "Suggested text and references to use when describing pipeline usag section_name: "nf-core/bacass Methods Description" section_href: "https://github.com/nf-core/bacass" plot_type: "html" -## TODO nf-core: Update the HTML below to your prefered methods description, e.g. add publication citation for this pipeline +## TODO nf-core: Update the HTML below to your preferred methods description, e.g. add publication citation for this pipeline ## You inject any metadata in the Nextflow '${workflow}' object data: |

    Methods

    -

    Data was processed using nf-core/bacass v${workflow.manifest.version} ${doi_text} of the nf-core collection of workflows (Ewels et al., 2020).

    +

    Data was processed using nf-core/bacass v${workflow.manifest.version} ${doi_text} of the nf-core collection of workflows (Ewels et al., 2020), utilising reproducible software environments from the Bioconda (Grüning et al., 2018) and Biocontainers (da Veiga Leprevost et al., 2017) projects.

    The pipeline was executed with Nextflow v${workflow.nextflow.version} (Di Tommaso et al., 2017) with the following command:

    ${workflow.commandLine}
    +

    ${tool_citations}

    References

      -
    • Di Tommaso, P., Chatzou, M., Floden, E. W., Barja, P. P., Palumbo, E., & Notredame, C. (2017). Nextflow enables reproducible computational workflows. Nature Biotechnology, 35(4), 316-319. https://doi.org/10.1038/nbt.3820
    • -
    • Ewels, P. A., Peltzer, A., Fillinger, S., Patel, H., Alneberg, J., Wilm, A., Garcia, M. U., Di Tommaso, P., & Nahnsen, S. (2020). The nf-core framework for community-curated bioinformatics pipelines. Nature Biotechnology, 38(3), 276-278. https://doi.org/10.1038/s41587-020-0439-x
    • +
    • Di Tommaso, P., Chatzou, M., Floden, E. W., Barja, P. P., Palumbo, E., & Notredame, C. (2017). Nextflow enables reproducible computational workflows. Nature Biotechnology, 35(4), 316-319. doi: 10.1038/nbt.3820
    • +
    • Ewels, P. A., Peltzer, A., Fillinger, S., Patel, H., Alneberg, J., Wilm, A., Garcia, M. U., Di Tommaso, P., & Nahnsen, S. (2020). The nf-core framework for community-curated bioinformatics pipelines. Nature Biotechnology, 38(3), 276-278. doi: 10.1038/s41587-020-0439-x
    • +
    • Grüning, B., Dale, R., Sjödin, A., Chapman, B. A., Rowe, J., Tomkins-Tinch, C. H., Valieris, R., Köster, J., & Bioconda Team. (2018). Bioconda: sustainable and comprehensive software distribution for the life sciences. Nature Methods, 15(7), 475–476. doi: 10.1038/s41592-018-0046-7
    • +
    • da Veiga Leprevost, F., Grüning, B. A., Alves Aflitos, S., Röst, H. L., Uszkoreit, J., Barsnes, H., Vaudel, M., Moreno, P., Gatto, L., Weber, J., Bai, M., Jimenez, R. C., Sachsenberg, T., Pfeuffer, J., Vera Alvarez, R., Griss, J., Nesvizhskii, A. I., & Perez-Riverol, Y. (2017). BioContainers: an open-source and community-driven framework for software standardization. Bioinformatics (Oxford, England), 33(16), 2580–2582. doi: 10.1093/bioinformatics/btx192
    • + ${tool_bibliography}
    Notes:
    diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index 5217b52e..d871ffc7 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -1,7 +1,7 @@ report_comment: > - This report has been generated by the nf-core/bacass + This report has been generated by the nf-core/bacass analysis pipeline. For information about how to interpret these results, please see the - documentation. + documentation. report_section_order: "nf-core-bacass-methods-description": order: -1000 diff --git a/assets/nf-core-bacass_logo_light.png b/assets/nf-core-bacass_logo_light.png index 644f00d9651b8d8ad5c1b031e9a6a53215a3eb05..6a16bb9278b3c2d03c07466d2df425c7495cc311 100644 GIT binary patch literal 71089 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�ev`Q}H7y#R1zKkC5n?0_OP7^FqWWeXhX0t0pNK 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

    )bNtXB<>| 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 } else { %>danger<%} %>", - "author_name": "sanger-tol/readmapping v${version} - ${runName}", + "author_name": "nf-core/bacass v${version} - ${runName}", "author_icon": "https://www.nextflow.io/docs/latest/_static/favicon.ico", "text": "<% if (success) { %>Pipeline completed successfully!<% } else { %>Pipeline completed with errors<% } %>", "fields": [ diff --git a/conf/test_full.config b/conf/test_full.config index 49a3746e..d35a88b9 100644 --- a/conf/test_full.config +++ b/conf/test_full.config @@ -10,8 +10,6 @@ ---------------------------------------------------------------------------------------- */ -cleanup = true - params { config_profile_name = 'Full test profile' config_profile_description = 'Full test dataset to check pipeline function' diff --git a/docs/usage.md b/docs/usage.md index d2ff3701..c6622965 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -57,7 +57,7 @@ An [example samplesheet](../assets/samplesheet.csv) has been provided with the p The typical command for running the pipeline is as follows: ```bash -nextflow run nf-core/bacass --input samplesheet.csv --outdir --genome GRCh37 -profile docker +nextflow run nf-core/bacass --input ./samplesheet.csv --outdir ./results --genome GRCh37 -profile docker ``` This will launch the pipeline with the `docker` configuration profile. See below for more information about profiles. @@ -76,7 +76,8 @@ If you wish to repeatedly use the same parameters for multiple runs, rather than Pipeline settings can be provided in a `yaml` or `json` file via `-params-file `. > ⚠️ Do not use `-c ` to specify parameters as this will result in errors. Custom config files specified with `-c` must only be used for [tuning process resource specifications](https://nf-co.re/docs/usage/configuration#tuning-workflow-resources), other infrastructural tweaks (such as output directories), or module arguments (args). -> The above pipeline run specified with a params file in yaml format: + +The above pipeline run specified with a params file in yaml format: ```bash nextflow run nf-core/bacass -profile docker -params-file params.yaml @@ -88,7 +89,6 @@ with `params.yaml` containing: input: './samplesheet.csv' outdir: './results/' genome: 'GRCh37' -input: 'data' <...> ``` diff --git a/lib/NfcoreSchema.groovy b/lib/NfcoreSchema.groovy deleted file mode 100755 index 9b34804d..00000000 --- a/lib/NfcoreSchema.groovy +++ /dev/null @@ -1,530 +0,0 @@ -// -// This file holds several functions used to perform JSON parameter validation, help and summary rendering for the nf-core pipeline template. -// - -import nextflow.Nextflow -import org.everit.json.schema.Schema -import org.everit.json.schema.loader.SchemaLoader -import org.everit.json.schema.ValidationException -import org.json.JSONObject -import org.json.JSONTokener -import org.json.JSONArray -import groovy.json.JsonSlurper -import groovy.json.JsonBuilder - -class NfcoreSchema { - - // - // Resolve Schema path relative to main workflow directory - // - public static String getSchemaPath(workflow, schema_filename='nextflow_schema.json') { - return "${workflow.projectDir}/${schema_filename}" - } - - // - // Function to loop over all parameters defined in schema and check - // whether the given parameters adhere to the specifications - // - /* groovylint-disable-next-line UnusedPrivateMethodParameter */ - public static void validateParameters(workflow, params, log, schema_filename='nextflow_schema.json') { - def has_error = false - //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// - // Check for nextflow core params and unexpected params - def json = new File(getSchemaPath(workflow, schema_filename=schema_filename)).text - def Map schemaParams = (Map) new JsonSlurper().parseText(json).get('definitions') - def nf_params = [ - // Options for base `nextflow` command - 'bg', - 'c', - 'C', - 'config', - 'd', - 'D', - 'dockerize', - 'h', - 'log', - 'q', - 'quiet', - 'syslog', - 'v', - - // Options for `nextflow run` command - 'ansi', - 'ansi-log', - 'bg', - 'bucket-dir', - 'c', - 'cache', - 'config', - 'dsl2', - 'dump-channels', - 'dump-hashes', - 'E', - 'entry', - 'latest', - 'lib', - 'main-script', - 'N', - 'name', - 'offline', - 'params-file', - 'pi', - 'plugins', - 'poll-interval', - 'pool-size', - 'profile', - 'ps', - 'qs', - 'queue-size', - 'r', - 'resume', - 'revision', - 'stdin', - 'stub', - 'stub-run', - 'test', - 'w', - 'with-apptainer', - 'with-charliecloud', - 'with-conda', - 'with-dag', - 'with-docker', - 'with-mpi', - 'with-notification', - 'with-podman', - 'with-report', - 'with-singularity', - 'with-timeline', - 'with-tower', - 'with-trace', - 'with-weblog', - 'without-docker', - 'without-podman', - 'work-dir' - ] - def unexpectedParams = [] - - // Collect expected parameters from the schema - def expectedParams = [] - def enums = [:] - for (group in schemaParams) { - for (p in group.value['properties']) { - expectedParams.push(p.key) - if (group.value['properties'][p.key].containsKey('enum')) { - enums[p.key] = group.value['properties'][p.key]['enum'] - } - } - } - - for (specifiedParam in params.keySet()) { - // nextflow params - if (nf_params.contains(specifiedParam)) { - log.error "ERROR: You used a core Nextflow option with two hyphens: '--${specifiedParam}'. Please resubmit with '-${specifiedParam}'" - has_error = true - } - // unexpected params - def params_ignore = params.schema_ignore_params.split(',') + 'schema_ignore_params' - def expectedParamsLowerCase = expectedParams.collect{ it.replace("-", "").toLowerCase() } - def specifiedParamLowerCase = specifiedParam.replace("-", "").toLowerCase() - def isCamelCaseBug = (specifiedParam.contains("-") && !expectedParams.contains(specifiedParam) && expectedParamsLowerCase.contains(specifiedParamLowerCase)) - if (!expectedParams.contains(specifiedParam) && !params_ignore.contains(specifiedParam) && !isCamelCaseBug) { - // Temporarily remove camelCase/camel-case params #1035 - def unexpectedParamsLowerCase = unexpectedParams.collect{ it.replace("-", "").toLowerCase()} - if (!unexpectedParamsLowerCase.contains(specifiedParamLowerCase)){ - unexpectedParams.push(specifiedParam) - } - } - } - - //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// - // Validate parameters against the schema - InputStream input_stream = new File(getSchemaPath(workflow, schema_filename=schema_filename)).newInputStream() - JSONObject raw_schema = new JSONObject(new JSONTokener(input_stream)) - - // Remove anything that's in params.schema_ignore_params - raw_schema = removeIgnoredParams(raw_schema, params) - - Schema schema = SchemaLoader.load(raw_schema) - - // Clean the parameters - def cleanedParams = cleanParameters(params) - - // Convert to JSONObject - def jsonParams = new JsonBuilder(cleanedParams) - JSONObject params_json = new JSONObject(jsonParams.toString()) - - // Validate - try { - schema.validate(params_json) - } catch (ValidationException e) { - println '' - log.error 'ERROR: Validation of pipeline parameters failed!' - JSONObject exceptionJSON = e.toJSON() - printExceptions(exceptionJSON, params_json, log, enums) - println '' - has_error = true - } - - // Check for unexpected parameters - if (unexpectedParams.size() > 0) { - Map colors = NfcoreTemplate.logColours(params.monochrome_logs) - println '' - def warn_msg = 'Found unexpected parameters:' - for (unexpectedParam in unexpectedParams) { - warn_msg = warn_msg + "\n* --${unexpectedParam}: ${params[unexpectedParam].toString()}" - } - log.warn warn_msg - log.info "- ${colors.dim}Ignore this warning: params.schema_ignore_params = \"${unexpectedParams.join(',')}\" ${colors.reset}" - println '' - } - - if (has_error) { - Nextflow.error('Exiting!') - } - } - - // - // Beautify parameters for --help - // - public static String paramsHelp(workflow, params, command, schema_filename='nextflow_schema.json') { - Map colors = NfcoreTemplate.logColours(params.monochrome_logs) - Integer num_hidden = 0 - String output = '' - output += 'Typical pipeline command:\n\n' - output += " ${colors.cyan}${command}${colors.reset}\n\n" - Map params_map = paramsLoad(getSchemaPath(workflow, schema_filename=schema_filename)) - Integer max_chars = paramsMaxChars(params_map) + 1 - Integer desc_indent = max_chars + 14 - Integer dec_linewidth = 160 - desc_indent - for (group in params_map.keySet()) { - Integer num_params = 0 - String group_output = colors.underlined + colors.bold + group + colors.reset + '\n' - def group_params = params_map.get(group) // This gets the parameters of that particular group - for (param in group_params.keySet()) { - if (group_params.get(param).hidden && !params.show_hidden_params) { - num_hidden += 1 - continue; - } - def type = '[' + group_params.get(param).type + ']' - def description = group_params.get(param).description - def defaultValue = group_params.get(param).default != null ? " [default: " + group_params.get(param).default.toString() + "]" : '' - def description_default = description + colors.dim + defaultValue + colors.reset - // Wrap long description texts - // Loosely based on https://dzone.com/articles/groovy-plain-text-word-wrap - if (description_default.length() > dec_linewidth){ - List olines = [] - String oline = "" // " " * indent - description_default.split(" ").each() { wrd -> - if ((oline.size() + wrd.size()) <= dec_linewidth) { - oline += wrd + " " - } else { - olines += oline - oline = wrd + " " - } - } - olines += oline - description_default = olines.join("\n" + " " * desc_indent) - } - group_output += " --" + param.padRight(max_chars) + colors.dim + type.padRight(10) + colors.reset + description_default + '\n' - num_params += 1 - } - group_output += '\n' - if (num_params > 0){ - output += group_output - } - } - if (num_hidden > 0){ - output += colors.dim + "!! Hiding $num_hidden params, use --show_hidden_params to show them !!\n" + colors.reset - } - output += NfcoreTemplate.dashedLine(params.monochrome_logs) - return output - } - - // - // Groovy Map summarising parameters/workflow options used by the pipeline - // - public static LinkedHashMap paramsSummaryMap(workflow, params, schema_filename='nextflow_schema.json') { - // Get a selection of core Nextflow workflow options - def Map workflow_summary = [:] - if (workflow.revision) { - workflow_summary['revision'] = workflow.revision - } - workflow_summary['runName'] = workflow.runName - if (workflow.containerEngine) { - workflow_summary['containerEngine'] = workflow.containerEngine - } - if (workflow.container) { - workflow_summary['container'] = workflow.container - } - workflow_summary['launchDir'] = workflow.launchDir - workflow_summary['workDir'] = workflow.workDir - workflow_summary['projectDir'] = workflow.projectDir - workflow_summary['userName'] = workflow.userName - workflow_summary['profile'] = workflow.profile - workflow_summary['configFiles'] = workflow.configFiles.join(', ') - - // Get pipeline parameters defined in JSON Schema - def Map params_summary = [:] - def params_map = paramsLoad(getSchemaPath(workflow, schema_filename=schema_filename)) - for (group in params_map.keySet()) { - def sub_params = new LinkedHashMap() - def group_params = params_map.get(group) // This gets the parameters of that particular group - for (param in group_params.keySet()) { - if (params.containsKey(param)) { - def params_value = params.get(param) - def schema_value = group_params.get(param).default - def param_type = group_params.get(param).type - if (schema_value != null) { - if (param_type == 'string') { - if (schema_value.contains('$projectDir') || schema_value.contains('${projectDir}')) { - def sub_string = schema_value.replace('\$projectDir', '') - sub_string = sub_string.replace('\${projectDir}', '') - if (params_value.contains(sub_string)) { - schema_value = params_value - } - } - if (schema_value.contains('$params.outdir') || schema_value.contains('${params.outdir}')) { - def sub_string = schema_value.replace('\$params.outdir', '') - sub_string = sub_string.replace('\${params.outdir}', '') - if ("${params.outdir}${sub_string}" == params_value) { - schema_value = params_value - } - } - } - } - - // We have a default in the schema, and this isn't it - if (schema_value != null && params_value != schema_value) { - sub_params.put(param, params_value) - } - // No default in the schema, and this isn't empty - else if (schema_value == null && params_value != "" && params_value != null && params_value != false) { - sub_params.put(param, params_value) - } - } - } - params_summary.put(group, sub_params) - } - return [ 'Core Nextflow options' : workflow_summary ] << params_summary - } - - // - // Beautify parameters for summary and return as string - // - public static String paramsSummaryLog(workflow, params) { - Map colors = NfcoreTemplate.logColours(params.monochrome_logs) - String output = '' - def params_map = paramsSummaryMap(workflow, params) - def max_chars = paramsMaxChars(params_map) - for (group in params_map.keySet()) { - def group_params = params_map.get(group) // This gets the parameters of that particular group - if (group_params) { - output += colors.bold + group + colors.reset + '\n' - for (param in group_params.keySet()) { - output += " " + colors.blue + param.padRight(max_chars) + ": " + colors.green + group_params.get(param) + colors.reset + '\n' - } - output += '\n' - } - } - output += "!! Only displaying parameters that differ from the pipeline defaults !!\n" - output += NfcoreTemplate.dashedLine(params.monochrome_logs) - return output - } - - // - // Loop over nested exceptions and print the causingException - // - private static void printExceptions(ex_json, params_json, log, enums, limit=5) { - def causingExceptions = ex_json['causingExceptions'] - if (causingExceptions.length() == 0) { - def m = ex_json['message'] =~ /required key \[([^\]]+)\] not found/ - // Missing required param - if (m.matches()) { - log.error "* Missing required parameter: --${m[0][1]}" - } - // Other base-level error - else if (ex_json['pointerToViolation'] == '#') { - log.error "* ${ex_json['message']}" - } - // Error with specific param - else { - def param = ex_json['pointerToViolation'] - ~/^#\// - def param_val = params_json[param].toString() - if (enums.containsKey(param)) { - def error_msg = "* --${param}: '${param_val}' is not a valid choice (Available choices" - if (enums[param].size() > limit) { - log.error "${error_msg} (${limit} of ${enums[param].size()}): ${enums[param][0..limit-1].join(', ')}, ... )" - } else { - log.error "${error_msg}: ${enums[param].join(', ')})" - } - } else { - log.error "* --${param}: ${ex_json['message']} (${param_val})" - } - } - } - for (ex in causingExceptions) { - printExceptions(ex, params_json, log, enums) - } - } - - // - // Remove an element from a JSONArray - // - private static JSONArray removeElement(json_array, element) { - def list = [] - int len = json_array.length() - for (int i=0;i - if(raw_schema.keySet().contains('definitions')){ - raw_schema.definitions.each { definition -> - for (key in definition.keySet()){ - if (definition[key].get("properties").keySet().contains(ignore_param)){ - // Remove the param to ignore - definition[key].get("properties").remove(ignore_param) - // If the param was required, change this - if (definition[key].has("required")) { - def cleaned_required = removeElement(definition[key].required, ignore_param) - definition[key].put("required", cleaned_required) - } - } - } - } - } - if(raw_schema.keySet().contains('properties') && raw_schema.get('properties').keySet().contains(ignore_param)) { - raw_schema.get("properties").remove(ignore_param) - } - if(raw_schema.keySet().contains('required') && raw_schema.required.contains(ignore_param)) { - def cleaned_required = removeElement(raw_schema.required, ignore_param) - raw_schema.put("required", cleaned_required) - } - } - return raw_schema - } - - // - // Clean and check parameters relative to Nextflow native classes - // - private static Map cleanParameters(params) { - def new_params = params.getClass().newInstance(params) - for (p in params) { - // remove anything evaluating to false - if (!p['value']) { - new_params.remove(p.key) - } - // Cast MemoryUnit to String - if (p['value'].getClass() == nextflow.util.MemoryUnit) { - new_params.replace(p.key, p['value'].toString()) - } - // Cast Duration to String - if (p['value'].getClass() == nextflow.util.Duration) { - new_params.replace(p.key, p['value'].toString().replaceFirst(/d(?!\S)/, "day")) - } - // Cast LinkedHashMap to String - if (p['value'].getClass() == LinkedHashMap) { - new_params.replace(p.key, p['value'].toString()) - } - } - return new_params - } - - // - // This function tries to read a JSON params file - // - private static LinkedHashMap paramsLoad(String json_schema) { - def params_map = new LinkedHashMap() - try { - params_map = paramsRead(json_schema) - } catch (Exception e) { - println "Could not read parameters settings from JSON. $e" - params_map = new LinkedHashMap() - } - return params_map - } - - // - // Method to actually read in JSON file using Groovy. - // Group (as Key), values are all parameters - // - Parameter1 as Key, Description as Value - // - Parameter2 as Key, Description as Value - // .... - // Group - // - - private static LinkedHashMap paramsRead(String json_schema) throws Exception { - def json = new File(json_schema).text - def Map schema_definitions = (Map) new JsonSlurper().parseText(json).get('definitions') - def Map schema_properties = (Map) new JsonSlurper().parseText(json).get('properties') - /* Tree looks like this in nf-core schema - * definitions <- this is what the first get('definitions') gets us - group 1 - title - description - properties - parameter 1 - type - description - parameter 2 - type - description - group 2 - title - description - properties - parameter 1 - type - description - * properties <- parameters can also be ungrouped, outside of definitions - parameter 1 - type - description - */ - - // Grouped params - def params_map = new LinkedHashMap() - schema_definitions.each { key, val -> - def Map group = schema_definitions."$key".properties // Gets the property object of the group - def title = schema_definitions."$key".title - def sub_params = new LinkedHashMap() - group.each { innerkey, value -> - sub_params.put(innerkey, value) - } - params_map.put(title, sub_params) - } - - // Ungrouped params - def ungrouped_params = new LinkedHashMap() - schema_properties.each { innerkey, value -> - ungrouped_params.put(innerkey, value) - } - params_map.put("Other parameters", ungrouped_params) - - return params_map - } - - // - // Get maximum number of characters across all parameter names - // - private static Integer paramsMaxChars(params_map) { - Integer max_chars = 0 - for (group in params_map.keySet()) { - def group_params = params_map.get(group) // This gets the parameters of that particular group - for (param in group_params.keySet()) { - if (param.size() > max_chars) { - max_chars = param.size() - } - } - } - return max_chars - } -} diff --git a/lib/NfcoreTemplate.groovy b/lib/NfcoreTemplate.groovy index 25a0a74a..408951ae 100755 --- a/lib/NfcoreTemplate.groovy +++ b/lib/NfcoreTemplate.groovy @@ -128,7 +128,7 @@ class NfcoreTemplate { def email_html = html_template.toString() // Render the sendmail template - def max_multiqc_email_size = params.max_multiqc_email_size as nextflow.util.MemoryUnit + def max_multiqc_email_size = (params.containsKey('max_multiqc_email_size') ? params.max_multiqc_email_size : 0) as nextflow.util.MemoryUnit def smail_fields = [ email: email_address, subject: subject, email_txt: email_txt, email_html: email_html, projectDir: "$projectDir", mqcFile: mqc_report, mqcMaxSize: max_multiqc_email_size.toBytes() ] def sf = new File("$projectDir/assets/sendmail_template.txt") def sendmail_template = engine.createTemplate(sf).make(smail_fields) diff --git a/lib/WorkflowBacass.groovy b/lib/WorkflowBacass.groovy index 4d1261de..b9a48aa4 100755 --- a/lib/WorkflowBacass.groovy +++ b/lib/WorkflowBacass.groovy @@ -11,6 +11,7 @@ class WorkflowBacass { // Check and validate parameters // public static void initialise(params, log) { + genomeExistsError(params, log) @@ -46,15 +47,57 @@ class WorkflowBacass { return yaml_file_text } - public static String methodsDescriptionText(run_workflow, mqc_methods_yaml) { + // + // Generate methods description for MultiQC + // + + public static String toolCitationText(params) { + + // TODO Optionally add in-text citation tools to this list. + // Can use ternary operators to dynamically construct based conditions, e.g. params["run_xyz"] ? "Tool (Foo et al. 2023)" : "", + // Uncomment function in methodsDescriptionText to render in MultiQC report + def citation_text = [ + "Tools used in the workflow included:", + "FastQC (Andrews 2010),", + "MultiQC (Ewels et al. 2016)", + "." + ].join(' ').trim() + + return citation_text + } + + public static String toolBibliographyText(params) { + + // TODO Optionally add bibliographic entries to this list. + // Can use ternary operators to dynamically construct based conditions, e.g. params["run_xyz"] ? "

  • Author (2023) Pub name, Journal, DOI
  • " : "", + // Uncomment function in methodsDescriptionText to render in MultiQC report + def reference_text = [ + "
  • Andrews S, (2010) FastQC, URL: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/).
  • ", + "
  • Ewels, P., Magnusson, M., Lundin, S., & Käller, M. (2016). MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics , 32(19), 3047–3048. doi: /10.1093/bioinformatics/btw354
  • " + ].join(' ').trim() + + return reference_text + } + + public static String methodsDescriptionText(run_workflow, mqc_methods_yaml, params) { // Convert to a named map so can be used as with familar NXF ${workflow} variable syntax in the MultiQC YML file def meta = [:] meta.workflow = run_workflow.toMap() meta["manifest_map"] = run_workflow.manifest.toMap() + // Pipeline DOI meta["doi_text"] = meta.manifest_map.doi ? "(doi: ${meta.manifest_map.doi})" : "" meta["nodoi_text"] = meta.manifest_map.doi ? "": "
  • If available, make sure to update the text to include the Zenodo DOI of version of the pipeline used.
  • " + // Tool references + meta["tool_citations"] = "" + meta["tool_bibliography"] = "" + + // TODO Only uncomment below if logic in toolCitationText/toolBibliographyText has been filled! + //meta["tool_citations"] = toolCitationText(params).replaceAll(", \\.", ".").replaceAll("\\. \\.", ".").replaceAll(", \\.", ".") + //meta["tool_bibliography"] = toolBibliographyText(params) + + def methods_text = mqc_methods_yaml.text def engine = new SimpleTemplateEngine() diff --git a/lib/WorkflowMain.groovy b/lib/WorkflowMain.groovy index b277503a..76691b66 100755 --- a/lib/WorkflowMain.groovy +++ b/lib/WorkflowMain.groovy @@ -20,40 +20,11 @@ class WorkflowMain { " https://github.com/${workflow.manifest.name}/blob/master/CITATIONS.md" } - // - // Generate help string - // - public static String help(workflow, params) { - def command = "nextflow run ${workflow.manifest.name} --input samplesheet.csv --genome GRCh37 -profile docker" - def help_string = '' - help_string += NfcoreTemplate.logo(workflow, params.monochrome_logs) - help_string += NfcoreSchema.paramsHelp(workflow, params, command) - help_string += '\n' + citation(workflow) + '\n' - help_string += NfcoreTemplate.dashedLine(params.monochrome_logs) - return help_string - } - - // - // Generate parameter summary log string - // - public static String paramsSummaryLog(workflow, params) { - def summary_log = '' - summary_log += NfcoreTemplate.logo(workflow, params.monochrome_logs) - summary_log += NfcoreSchema.paramsSummaryLog(workflow, params) - summary_log += '\n' + citation(workflow) + '\n' - summary_log += NfcoreTemplate.dashedLine(params.monochrome_logs) - return summary_log - } // // Validate parameters and print summary to screen // public static void initialise(workflow, params, log) { - // Print help to screen if required - if (params.help) { - log.info help(workflow, params) - System.exit(0) - } // Print workflow version and exit on --version if (params.version) { @@ -62,14 +33,6 @@ class WorkflowMain { System.exit(0) } - // Print parameter summary log to screen - log.info paramsSummaryLog(workflow, params) - - // Validate workflow parameters via the JSON schema - if (params.validate_params) { - NfcoreSchema.validateParameters(workflow, params, log) - } - // Check that a -profile or Nextflow config has been provided to run the pipeline NfcoreTemplate.checkConfigProvided(workflow, log) diff --git a/main.nf b/main.nf index 6b776dd9..4e175f76 100644 --- a/main.nf +++ b/main.nf @@ -25,6 +25,22 @@ params.fasta = WorkflowMain.getGenomeAttribute(params, 'fasta') ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ +include { validateParameters; paramsHelp } from 'plugin/nf-validation' + +// Print help message if needed +if (params.help) { + def logo = NfcoreTemplate.logo(workflow, params.monochrome_logs) + def citation = '\n' + WorkflowMain.citation(workflow) + '\n' + def String command = "nextflow run ${workflow.manifest.name} --input samplesheet.csv --genome GRCh37 -profile docker" + log.info logo + paramsHelp(command) + citation + NfcoreTemplate.dashedLine(params.monochrome_logs) + System.exit(0) +} + +// Validate input parameters +if (params.validate_params) { + validateParameters() +} + WorkflowMain.initialise(workflow, params, log) /* diff --git a/nextflow.config b/nextflow.config index 5202604a..a054b40e 100644 --- a/nextflow.config +++ b/nextflow.config @@ -12,12 +12,12 @@ params { // TODO nf-core: Specify your pipeline's command line flags // Input options input = null - - // References genome = null igenomes_base = 's3://ngi-igenomes/igenomes' igenomes_ignore = false + + // MultiQC options multiqc_config = null multiqc_title = null @@ -27,7 +27,6 @@ params { // Boilerplate options outdir = null - tracedir = "${params.outdir}/pipeline_info" publish_dir_mode = 'copy' email = null email_on_fail = null @@ -36,19 +35,15 @@ params { hook_url = null help = false version = false - validate_params = true - show_hidden_params = false - schema_ignore_params = 'genomes' - // Config options + config_profile_name = null + config_profile_description = null custom_config_version = 'master' custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}" - config_profile_description = null config_profile_contact = null config_profile_url = null - config_profile_name = null - + // Max resource options // Defaults only, expecting to be overwritten @@ -56,6 +51,13 @@ params { max_cpus = 16 max_time = '240.h' + // Schema validation default options + validationFailUnrecognisedParams = false + validationLenientMode = false + validationSchemaIgnoreParams = 'genomes' + validationShowHiddenParams = false + validate_params = true + } // Load base.config by default for all pipelines @@ -75,13 +77,11 @@ try { // } catch (Exception e) { // System.err.println("WARNING: Could not load nf-core/config/bacass profiles: ${params.custom_config_base}/pipeline/bacass.config") // } - - profiles { debug { dumpHashes = true process.beforeScript = 'echo $HOSTNAME' - cleanup = false + cleanup = false } conda { conda.enabled = true @@ -104,7 +104,6 @@ profiles { } docker { docker.enabled = true - docker.registry = 'quay.io' docker.userEmulation = true conda.enabled = false singularity.enabled = false @@ -128,7 +127,6 @@ profiles { } podman { podman.enabled = true - podman.registry = 'quay.io' conda.enabled = false docker.enabled = false singularity.enabled = false @@ -172,6 +170,18 @@ profiles { test_full { includeConfig 'conf/test_full.config' } } +// Set default registry for Apptainer, Docker, Podman and Singularity independent of -profile +// Will not be used unless Apptainer / Docker / Podman / Singularity are enabled +// Set to your registry if you have a mirror of containers +apptainer.registry = 'quay.io' +docker.registry = 'quay.io' +podman.registry = 'quay.io' +singularity.registry = 'quay.io' + +// Nextflow plugins +plugins { + id 'nf-validation' // Validation of pipeline parameters and creation of an input channel from a sample sheet +} // Load igenomes.config if required if (!params.igenomes_ignore) { @@ -179,8 +189,6 @@ if (!params.igenomes_ignore) { } else { params.genomes = [:] } - - // Export these variables to prevent local Python/R libraries from conflicting with those in the container // The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container. // See https://apeltzer.github.io/post/03-julia-lang-nextflow/ for details on that. Once we have a common agreement on where to keep Julia packages, this is adjustable. @@ -198,19 +206,19 @@ process.shell = ['/bin/bash', '-euo', 'pipefail'] def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss') timeline { enabled = true - file = "${params.tracedir}/execution_timeline_${trace_timestamp}.html" + file = "${params.outdir}/pipeline_info/execution_timeline_${trace_timestamp}.html" } report { enabled = true - file = "${params.tracedir}/execution_report_${trace_timestamp}.html" + file = "${params.outdir}/pipeline_info/execution_report_${trace_timestamp}.html" } trace { enabled = true - file = "${params.tracedir}/execution_trace_${trace_timestamp}.txt" + file = "${params.outdir}/pipeline_info/execution_trace_${trace_timestamp}.txt" } dag { enabled = true - file = "${params.tracedir}/pipeline_dag_${trace_timestamp}.html" + file = "${params.outdir}/pipeline_info/pipeline_dag_${trace_timestamp}.html" } manifest { @@ -219,7 +227,7 @@ manifest { homePage = 'https://github.com/nf-core/bacass' description = """Simple bacterial assembly and annotation""" mainScript = 'main.nf' - nextflowVersion = '!>=22.10.1' + nextflowVersion = '!>=23.04.0' version = '2.1.0dev' doi = '' } diff --git a/nextflow_schema.json b/nextflow_schema.json index 7411c456..083ee384 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -15,9 +15,9 @@ "input": { "type": "string", "format": "file-path", + "exists": true, "mimetype": "text/csv", "pattern": "^\\S+\\.csv$", - "schema": "assets/schema_input.json", "description": "Path to comma-separated file containing information about the samples in the experiment.", "help_text": "You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row. See [usage docs](https://nf-co.re/bacass/usage#samplesheet-input).", "fa_icon": "fas fa-file-csv" @@ -57,6 +57,7 @@ "fasta": { "type": "string", "format": "file-path", + "exists": true, "mimetype": "text/plain", "pattern": "^\\S+\\.fn?a(sta)?(\\.gz)?$", "description": "Path to FASTA genome file.", @@ -157,7 +158,7 @@ "description": "Maximum amount of time that can be requested for any single job.", "default": "240.h", "fa_icon": "far fa-clock", - "pattern": "^(\\d+\\.?\\s*(s|m|h|day)\\s*)+$", + "pattern": "^(\\d+\\.?\\s*(s|m|h|d|day)\\s*)+$", "hidden": true, "help_text": "Use to set an upper-limit for the time requirement for each process. Should be a string in the format integer-unit e.g. `--max_time '2.h'`" } @@ -174,12 +175,14 @@ "type": "boolean", "description": "Display help text.", "fa_icon": "fas fa-question-circle", + "default": false, "hidden": true }, "version": { "type": "boolean", "description": "Display version and exit.", "fa_icon": "fas fa-question-circle", + "default": false, "hidden": true }, "publish_dir_mode": { @@ -203,6 +206,7 @@ "type": "boolean", "description": "Send plain-text email instead of HTML.", "fa_icon": "fas fa-remove-format", + "default": false, "hidden": true }, "max_multiqc_email_size": { @@ -217,6 +221,7 @@ "type": "boolean", "description": "Do not use coloured log outputs.", "fa_icon": "fas fa-palette", + "default": false, "hidden": true }, "hook_url": { @@ -228,6 +233,7 @@ }, "multiqc_config": { "type": "string", + "format": "file-path", "description": "Custom config file to supply to MultiQC.", "fa_icon": "fas fa-cog", "hidden": true @@ -243,13 +249,6 @@ "description": "Custom MultiQC yaml file containing HTML including a methods description.", "fa_icon": "fas fa-cog" }, - "tracedir": { - "type": "string", - "description": "Directory to keep pipeline Nextflow logs and reports.", - "default": "${params.outdir}/pipeline_info", - "fa_icon": "fas fa-cogs", - "hidden": true - }, "validate_params": { "type": "boolean", "description": "Boolean whether to validate parameters against the schema at runtime", @@ -257,12 +256,29 @@ "fa_icon": "fas fa-check-square", "hidden": true }, - "show_hidden_params": { + "validationShowHiddenParams": { "type": "boolean", "fa_icon": "far fa-eye-slash", "description": "Show all params when using `--help`", + "default": false, "hidden": true, "help_text": "By default, parameters set as _hidden_ in the schema are not shown on the command line when a user runs with `--help`. Specifying this option will tell the pipeline to show all parameters." + }, + "validationFailUnrecognisedParams": { + "type": "boolean", + "fa_icon": "far fa-check-circle", + "description": "Validation of parameters fails when an unrecognised parameter is found.", + "default": false, + "hidden": true, + "help_text": "By default, when an unrecognised parameter is found, it returns a warinig." + }, + "validationLenientMode": { + "type": "boolean", + "fa_icon": "far fa-check-circle", + "description": "Validation of parameters in lenient more.", + "default": false, + "hidden": true, + "help_text": "Allows string values that are parseable as numbers or booleans. For further information see [JSONSchema docs](https://github.com/everit-org/json-schema#lenient-mode)." } } } diff --git a/workflows/bacass.nf b/workflows/bacass.nf index f0a0c467..506a68dd 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -1,21 +1,19 @@ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - VALIDATE INPUTS + PRINT PARAMS SUMMARY ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -def summary_params = NfcoreSchema.paramsSummaryMap(workflow, params) +include { paramsSummaryLog; paramsSummaryMap } from 'plugin/nf-validation' -// Validate input parameters -WorkflowBacass.initialise(params, log) +def logo = NfcoreTemplate.logo(workflow, params.monochrome_logs) +def citation = '\n' + WorkflowMain.citation(workflow) + '\n' +def summary_params = paramsSummaryMap(workflow) -// TODO nf-core: Add all file path parameters for the pipeline to the list below -// Check input path parameters to see if they exist -def checkPathParamList = [ params.input, params.multiqc_config, params.fasta ] -for (param in checkPathParamList) { if (param) { file(param, checkIfExists: true) } } +// Print parameter summary log to screen +log.info logo + paramsSummaryLog(workflow) + citation -// Check mandatory parameters -if (params.input) { ch_input = file(params.input) } else { exit 1, 'Input samplesheet not specified!' } +WorkflowBacass.initialise(params, log) /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -69,9 +67,12 @@ workflow BACASS { // SUBWORKFLOW: Read in samplesheet, validate and stage input files // INPUT_CHECK ( - ch_input + file(params.input) ) ch_versions = ch_versions.mix(INPUT_CHECK.out.versions) + // TODO: OPTIONAL, you can use nf-validation plugin to create an input channel from the samplesheet with Channel.fromSamplesheet("input") + // See the documentation https://nextflow-io.github.io/nf-validation/samplesheets/fromSamplesheet/ + // ! There is currently no tooling to help you write a sample sheet schema // // MODULE: Run FastQC @@ -91,7 +92,7 @@ workflow BACASS { workflow_summary = WorkflowBacass.paramsSummaryMultiqc(workflow, summary_params) ch_workflow_summary = Channel.value(workflow_summary) - methods_description = WorkflowBacass.methodsDescriptionText(workflow, ch_multiqc_custom_methods_description) + methods_description = WorkflowBacass.methodsDescriptionText(workflow, ch_multiqc_custom_methods_description, params) ch_methods_description = Channel.value(methods_description) ch_multiqc_files = Channel.empty() From cd125df0264a8618fba9d808e27b5bd703664de7 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Mon, 11 Sep 2023 17:51:11 +0200 Subject: [PATCH 13/21] fix nf-core linting --- CHANGELOG.md | 163 ++++++++++++++++++------------------ CITATIONS.md | 33 +++++--- README.md | 2 +- assets/test_config_dfast.py | 54 ++++-------- docs/output.md | 119 +++++++++++++------------- docs/usage.md | 14 ++-- nextflow_schema.json | 55 +++--------- 7 files changed, 202 insertions(+), 238 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 081d0a71..3bccdc38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## v2.0.1dev nf-core/bacass: "Navy Steel Swordfish" - 2023/09/11 -This version merges the nf-core template update v2.9. It also updates modules or dependencies to make them work with the new template. +This version merges the nf-core template update v2.9. It also updates modules or dependencies to make them work with the new template. ### `Changed` -* [#84](https://github.com/nf-core/bacass/pull/84) & [#85](https://github.com/nf-core/bacass/issues/85) - Update nf-core/bacass to the new nf-core 2.0 `TEMPLATE`. -* [#61](https://github.com/nf-core/bacass/issues/61) - Update local/modules to nf-core/modules (detailed below). +- [#84](https://github.com/nf-core/bacass/pull/84) & [#85](https://github.com/nf-core/bacass/issues/85) - Update nf-core/bacass to the new nf-core 2.0 `TEMPLATE`. + +- [#61](https://github.com/nf-core/bacass/issues/61) - Update local/modules to nf-core/modules (detailed below). ### `Added` @@ -19,76 +20,76 @@ This version merges the nf-core template update v2.9. It also updates modules or ### `Fixed` -* Fixed modules - - Medaka: Medaka last version (see version update below) doesn't allow gzip compressed files. Add bgzip compression instead. - - Dfast: fix overwriting issues detected when copying sample files from `work/` to `results/` +- Fixed modules + - Medaka: Medaka last version (see version update below) doesn't allow gzip compressed files. Add bgzip compression instead. + - Dfast: fix overwriting issues detected when copying sample files from `work/` to `results/` ### `Dependencies` -* [#61](https://github.com/nf-core/bacass/issues/61) - Update a bunch of local/modules to nf-core/modules plus version update. +- [#61](https://github.com/nf-core/bacass/issues/61) - Update a bunch of local/modules to nf-core/modules plus version update. - - Canu (v2.1.1 → v2.2) - - Minimap2 (v2.21 → v2.24) - - Miniasm - - Racon + - Canu (v2.1.1 → v2.2) + - Minimap2 (v2.21 → v2.24) + - Miniasm + - Racon -* [#84](https://github.com/nf-core/bacass/pull/84) Update already nf-core modules - - Fastqc - - Samtools (v1.13 → v1.17) - - Kraken2 (v2.1.1 → v2.1.2) - - Quast (v5.0.2 → 5.2.0) - - Prokka - - Multiqc (v1.10.1 → v1.15) +- [#84](https://github.com/nf-core/bacass/pull/84) Update already nf-core modules -* Refactor `local/modules` making them follow nf-core v2.9 structure/fashion. + - Fastqc + - Samtools (v1.13 → v1.17) + - Kraken2 (v2.1.1 → v2.1.2) + - Quast (v5.0.2 → 5.2.0) + - Prokka + - Multiqc (v1.10.1 → v1.15) - - Dfast - - Medaka - - Nanoplot (v1.38.0 → v1.41.6) - - Nanopolish (v0.13.2-5 → 0.14.0) - - Pycoqc - - Unicycler +- Refactor `local/modules` making them follow nf-core v2.9 structure/fashion. -### `Deprecated` + - Dfast + - Medaka + - Nanoplot (v1.38.0 → v1.41.6) + - Nanopolish (v0.13.2-5 → 0.14.0) + - Pycoqc + - Unicycler -* [#61](https://github.com/nf-core/bacass/issues/61) - Replace depecated modules with nf-core/modules. +### `Deprecated` - - Replace `local/get_software_versions.nf` with `nf-core/custom/dumpsoftwareversions.nf` - - Replace `local/skewer` by `nf-core/fastp` and wrap fastqc plus fastp into `subworkflows/nf-core/fastq_trim_fastp_fastqc` - - Replace `local/nanoplot` by local/nanoplot_custom (using as template nf-core/nanoplot). +- [#61](https://github.com/nf-core/bacass/issues/61) - Replace depecated modules with nf-core/modules. + - Replace `local/get_software_versions.nf` with `nf-core/custom/dumpsoftwareversions.nf` + - Replace `local/skewer` by `nf-core/fastp` and wrap fastqc plus fastp into `subworkflows/nf-core/fastq_trim_fastp_fastqc` + - Replace `local/nanoplot` by local/nanoplot_custom (using as template nf-core/nanoplot). ## v2.0.0 nf-core/bacass: "Navy Steel Swordfish" 2021/08/27 ### `Changed` -* [#56](https://github.com/nf-core/bacass/pull/56) - Switched to DSL2 & update to new nf-core 2.1 `TEMPLATE` -* [#56](https://github.com/nf-core/bacass/pull/56) - `--krakendb` now expects a `.tar.gz`/`.tgz` (compressed tar archive) directly from `https://benlangmead.github.io/aws-indexes/k2` instead of an uncompressed folder. +- [#56](https://github.com/nf-core/bacass/pull/56) - Switched to DSL2 & update to new nf-core 2.1 `TEMPLATE` +- [#56](https://github.com/nf-core/bacass/pull/56) - `--krakendb` now expects a `.tar.gz`/`.tgz` (compressed tar archive) directly from `https://benlangmead.github.io/aws-indexes/k2` instead of an uncompressed folder. ### `Added` -* [#56](https://github.com/nf-core/bacass/pull/56) - Added full size test dataset, two Zetaproteobacteria sequenced with Illumina MiSeq Reagent Kit V2, PE250, 3 to 4 million read pairs. +- [#56](https://github.com/nf-core/bacass/pull/56) - Added full size test dataset, two Zetaproteobacteria sequenced with Illumina MiSeq Reagent Kit V2, PE250, 3 to 4 million read pairs. ### `Fixed` -* [#51](https://github.com/nf-core/bacass/issues/51) - Fixed Unicycler +- [#51](https://github.com/nf-core/bacass/issues/51) - Fixed Unicycler ### `Dependencies` -* [#56](https://github.com/nf-core/bacass/pull/56) - Updated a bunch of dependencies (unchanged: FastQC, Miniasm, Prokka, Porechop, QUAST) - * Unicycler from 0.4.4 to 0.4.8 - * Kraken2 from 2.0.9beta to 2.1.1 - * MultiQC from 1.9 to 1.10.1 - * PYCOQC from 2.5.0.23 to 2.5.2 - * Samtools from 1.11 to 1.13 - * Canu from 2.0 to 2.1.1-2 - * dfast from 1.2.10 to 1.2.14 - * Medaka from 1.1.2 to 1.4.3-0 - * Minimap 2 from 2.17 to 2.21 - * Nanoplot from 1.32.1 to 1.38.0 - * Nanopolish from 0.13.2 to 0.13.2-5 - * Racon from 1.4.13 to 1.4.20-1 - * Skewer from 0.2.2 to 0.2.2-3 +- [#56](https://github.com/nf-core/bacass/pull/56) - Updated a bunch of dependencies (unchanged: FastQC, Miniasm, Prokka, Porechop, QUAST) + - Unicycler from 0.4.4 to 0.4.8 + - Kraken2 from 2.0.9beta to 2.1.1 + - MultiQC from 1.9 to 1.10.1 + - PYCOQC from 2.5.0.23 to 2.5.2 + - Samtools from 1.11 to 1.13 + - Canu from 2.0 to 2.1.1-2 + - dfast from 1.2.10 to 1.2.14 + - Medaka from 1.1.2 to 1.4.3-0 + - Minimap 2 from 2.17 to 2.21 + - Nanoplot from 1.32.1 to 1.38.0 + - Nanopolish from 0.13.2 to 0.13.2-5 + - Racon from 1.4.13 to 1.4.20-1 + - Skewer from 0.2.2 to 0.2.2-3 ### `Deprecated` @@ -96,48 +97,48 @@ This version merges the nf-core template update v2.9. It also updates modules or This is basically a maintenance update that includes template updates, fixed environments and some minor bugfixes. -* Merged in nf-core/tools template v 1.10.2 -* Updated dependencies - * fastqc=0.11.8, 0.11.9 - * multiqc=1.8, 1.9 - * kraken2=2.0.8_beta, 2.0.9beta - * prokka=1.14.5, 1.14.6 - * nanopolish=0.11.2, 0.13.2 - * parallel=20191122, 20200922 - * racon=1.4.10, 1.4.13 - * canu=1.9, 2.0 - * samtools=1.9, 1.11 - * nanoplot=1.28.1, 1.32.1 - * pycoqc=2.5.0.3, 2.5.0.23 -* Switched out containers for many tools to make DSLv2 transition easier (escape from dependency hell) +- Merged in nf-core/tools template v 1.10.2 +- Updated dependencies + - fastqc=0.11.8, 0.11.9 + - multiqc=1.8, 1.9 + - kraken2=2.0.8_beta, 2.0.9beta + - prokka=1.14.5, 1.14.6 + - nanopolish=0.11.2, 0.13.2 + - parallel=20191122, 20200922 + - racon=1.4.10, 1.4.13 + - canu=1.9, 2.0 + - samtools=1.9, 1.11 + - nanoplot=1.28.1, 1.32.1 + - pycoqc=2.5.0.3, 2.5.0.23 +- Switched out containers for many tools to make DSLv2 transition easier (escape from dependency hell) ## v1.1.0 nf-core/bacass: "Green Aluminium Shark" 2019/12/13 -* Added support for hybrid assembly using Nanopore and Illumina Short Reads -* Added methods for long-read Nanopore data - * Nanopolish, for polishing of Nanopore data with Illumina reads - * Medaka, as alternative assembly polishing method - * PoreChop, for quality trimming of Nanopore data - * Nanoplot, for plotting quality metrics of Nanopore data - * PycoQC, to QC Nanopore data -* Added multiple tools to assemble long-reads - * Miniasm + Racon - * Canu Assembler - * Unicycler in Long read Mode -* Add alternative assembly annotation using DFAST -* Add social preview image +- Added support for hybrid assembly using Nanopore and Illumina Short Reads +- Added methods for long-read Nanopore data + - Nanopolish, for polishing of Nanopore data with Illumina reads + - Medaka, as alternative assembly polishing method + - PoreChop, for quality trimming of Nanopore data + - Nanoplot, for plotting quality metrics of Nanopore data + - PycoQC, to QC Nanopore data +- Added multiple tools to assemble long-reads + - Miniasm + Racon + - Canu Assembler + - Unicycler in Long read Mode +- Add alternative assembly annotation using DFAST +- Add social preview image ### Dependency updates -* Bumped Nextflow Version to 19.10.0 +- Bumped Nextflow Version to 19.10.0 ## Added tools -* DFAST -* PycoQC -* Nanoplot -* PoreChop -* Nanopolish +- DFAST +- PycoQC +- Nanoplot +- PoreChop +- Nanopolish ## v1.0.0 nf-core/bacass: "Green Tin Ant" diff --git a/CITATIONS.md b/CITATIONS.md index be73036b..eb335184 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -13,49 +13,58 @@ - [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) * [Skewer](https://pubmed.ncbi.nlm.nih.gov/24925680/) - > Jiang H, Lei R, Ding SW, Zhu S. Skewer: a fast and accurate adapter trimmer for next-generation sequencing paired-end reads. BMC Bioinformatics. 2014 Jun 12;15:182. doi: 10.1186/1471-2105-15-182. PMID: 24925680; PMCID: PMC4074385. + + > Jiang H, Lei R, Ding SW, Zhu S. Skewer: a fast and accurate adapter trimmer for next-generation sequencing paired-end reads. BMC Bioinformatics. 2014 Jun 12;15:182. doi: 10.1186/1471-2105-15-182. PMID: 24925680; PMCID: PMC4074385. * [Porechop](https://github.com/rrwick/Porechop) * [NanoPlot](https://doi.org/10.1093/bioinformatics/bty149) - > De Coster, W., D’Hert, S., Schultz, D. T., Cruts, M., & Van Broeckhoven, C. (2018). NanoPack: visualizing and processing long-read sequencing data. Bioinformatics, 34(15), 2666-2669. doi: 10.1093/bioinformatics/bty149. + + > De Coster, W., D’Hert, S., Schultz, D. T., Cruts, M., & Van Broeckhoven, C. (2018). NanoPack: visualizing and processing long-read sequencing data. Bioinformatics, 34(15), 2666-2669. doi: 10.1093/bioinformatics/bty149. * [pycoQC](https://github.com/tleonardi/pycoQC) * [Unicycler](https://pubmed.ncbi.nlm.nih.gov/28594827/) - > Wick RR, Judd LM, Gorrie CL, Holt KE. Unicycler: Resolving bacterial genome assemblies from short and long sequencing reads. PLoS Comput Biol. 2017 Jun 8;13(6):e1005595. doi: 10.1371/journal.pcbi.1005595. PMID: 28594827; PMCID: PMC5481147. + + > Wick RR, Judd LM, Gorrie CL, Holt KE. Unicycler: Resolving bacterial genome assemblies from short and long sequencing reads. PLoS Comput Biol. 2017 Jun 8;13(6):e1005595. doi: 10.1371/journal.pcbi.1005595. PMID: 28594827; PMCID: PMC5481147. * [Miniasm](https://github.com/lh3/miniasm) with [Racon](https://github.com/isovic/racon) * [Canu](https://pubmed.ncbi.nlm.nih.gov/28298431/) - > Koren S, Walenz BP, Berlin K, Miller JR, Bergman NH, Phillippy AM. Canu: scalable and accurate long-read assembly via adaptive k-mer weighting and repeat separation. Genome Res. 2017 May;27(5):722-736. doi: 10.1101/gr.215087.116. Epub 2017 Mar 15. PMID: 28298431; PMCID: PMC5411767. + + > Koren S, Walenz BP, Berlin K, Miller JR, Bergman NH, Phillippy AM. Canu: scalable and accurate long-read assembly via adaptive k-mer weighting and repeat separation. Genome Res. 2017 May;27(5):722-736. doi: 10.1101/gr.215087.116. Epub 2017 Mar 15. PMID: 28298431; PMCID: PMC5411767. * [QUAST](https://pubmed.ncbi.nlm.nih.gov/23422339/) - > Gurevich A, Saveliev V, Vyahhi N, Tesler G. QUAST: quality assessment tool for genome assemblies. Bioinformatics. 2013 Apr 15;29(8):1072-5. doi: 10.1093/bioinformatics/btt086. Epub 2013 Feb 19. PMID: 23422339; PMCID: PMC3624806. + + > Gurevich A, Saveliev V, Vyahhi N, Tesler G. QUAST: quality assessment tool for genome assemblies. Bioinformatics. 2013 Apr 15;29(8):1072-5. doi: 10.1093/bioinformatics/btt086. Epub 2013 Feb 19. PMID: 23422339; PMCID: PMC3624806. * [Prokka](https://pubmed.ncbi.nlm.nih.gov/24642063/) - > Seemann T. Prokka: rapid prokaryotic genome annotation. Bioinformatics. 2014 Jul 15;30(14):2068-9. doi: 10.1093/bioinformatics/btu153. Epub 2014 Mar 18. PMID: 24642063. + + > Seemann T. Prokka: rapid prokaryotic genome annotation. Bioinformatics. 2014 Jul 15;30(14):2068-9. doi: 10.1093/bioinformatics/btu153. Epub 2014 Mar 18. PMID: 24642063. * [DFAST](https://pubmed.ncbi.nlm.nih.gov/29106469/) - > Tanizawa Y, Fujisawa T, Nakamura Y. DFAST: a flexible prokaryotic genome annotation pipeline for faster genome publication. Bioinformatics. 2018 Mar 15;34(6):1037-1039. doi: 10.1093/bioinformatics/btx713. PMID: 29106469; PMCID: PMC5860143. + + > Tanizawa Y, Fujisawa T, Nakamura Y. DFAST: a flexible prokaryotic genome annotation pipeline for faster genome publication. Bioinformatics. 2018 Mar 15;34(6):1037-1039. doi: 10.1093/bioinformatics/btx713. PMID: 29106469; PMCID: PMC5860143. * [Medaka](https://github.com/nanoporetech/medaka) * [Nanopolish](https://github.com/jts/nanopolish) * [SAMtools](https://doi.org/10.1093/bioinformatics/btp352) - > Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J., Homer, N., … 1000 Genome Project Data Processing Subgroup. (2009). The Sequence Alignment/Map format and SAMtools. Bioinformatics , 25(16), 2078–2079. doi: 10.1093/bioinformatics/btp352. + + > Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J., Homer, N., … 1000 Genome Project Data Processing Subgroup. (2009). The Sequence Alignment/Map format and SAMtools. Bioinformatics , 25(16), 2078–2079. doi: 10.1093/bioinformatics/btp352. * [Kraken2](https://doi.org/10.1186/s13059-019-1891-0) - > Wood, D et al., 2019. Improved metagenomic analysis with Kraken 2. Genome Biology volume 20, Article number: 257. doi: 10.1186/s13059-019-1891-0. + + > Wood, D et al., 2019. Improved metagenomic analysis with Kraken 2. Genome Biology volume 20, Article number: 257. doi: 10.1186/s13059-019-1891-0. * [MultiQC](https://www.ncbi.nlm.nih.gov/pubmed/27312411/) - > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924 + > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924 ## Data -* [Full-size test data](https://pubmed.ncbi.nlm.nih.gov/32561582/) - > Blackwell N, Bryce C, Straub D, Kappler A, Kleindienst S. Genomic Insights into Two Novel Fe(II)-Oxidizing Zetaproteobacteria Isolates Reveal Lifestyle Adaption to Coastal Marine Sediments. Appl Environ Microbiol. 2020 Aug 18;86(17):e01160-20. doi: 10.1128/AEM.01160-20. PMID: 32561582; PMCID: PMC7440796. +- [Full-size test data](https://pubmed.ncbi.nlm.nih.gov/32561582/) + > Blackwell N, Bryce C, Straub D, Kappler A, Kleindienst S. Genomic Insights into Two Novel Fe(II)-Oxidizing Zetaproteobacteria Isolates Reveal Lifestyle Adaption to Coastal Marine Sediments. Appl Environ Microbiol. 2020 Aug 18;86(17):e01160-20. doi: 10.1128/AEM.01160-20. PMID: 32561582; PMCID: PMC7440796. ## Software packaging/containerisation tools diff --git a/README.md b/README.md index f0322ca2..641f037c 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ For further information or help, don't hesitate to get in touch on the [Slack `# ## Citations -If you use nf-core/bacass for your analysis, please cite it using the following doi: [10.5281/zenodo.2669428](https://doi.org/10.5281/zenodo.2669428) +If you use nf-core/bacass for your analysis, please cite it using the following doi: [10.5281/zenodo.2669428](https://doi.org/10.5281/zenodo.2669428) An extensive list of references for the tools used by the pipeline can be found in the [`CITATIONS.md`](CITATIONS.md) file. diff --git a/assets/test_config_dfast.py b/assets/test_config_dfast.py index 234b0bdc..0dc915ef 100644 --- a/assets/test_config_dfast.py +++ b/assets/test_config_dfast.py @@ -18,17 +18,15 @@ class Config: # Otherwise, sequences will be renamed as 'Sequence001, Sequence002, ...'. # If 'sort_by_length' is set to True, sequences will be sorted so that longer sequences come first. # In a draft genome, sequences shorter than 'minimum_length' will be eliminated. - "complete": False, - "use_original_name": False, # If set to True, the first word in the Fasta header line will be used as a sequence name. + "use_original_name": False, # If set to True, the first word in the Fasta header line will be used as a sequence name. "sort_by_length": True, - "minimum_length": 200 + "minimum_length": 200, } GENOME_SOURCE_INFORMATION = { # These attributes are reflected in the source feature, # and do not affect the annotation results. - "organism": "", "strain": "", "seq_names": "", @@ -40,17 +38,15 @@ class Config: LOCUS_TAG_SETTINGS = { "locus_tag_prefix": "LOCUS", "step": 10, - "use_separate_tags": True, # If set to `True`, locus_tags are assigned separately according to feature type. + "use_separate_tags": True, # If set to `True`, locus_tags are assigned separately according to feature type. "symbols": {"CDS": "", "rRNA": "r", "tRNA": "t", "tmRNA": "tm"} # "symbols": {"CDS": "", "rRNA": "r", "tRNA": "t", "tmRNA": "tm", "nc_rna": "nc", "misc_rna": "misc"} } FEATURE_ADJUSTMENT = { "remove_partial_features": True, # True: enabled, False: disabled - "remove_overlapping_features": True, # True: enabled, False: disabled "feature_type_priority": ["assembly_gap", "CRISPR", ("tmRNA", "tRNA", "rRNA"), "CDS"], - "merge_cds": False, # True: enabled, False: disabled "tool_type_priority": {"MGA": 0, "Prodigal": 1}, } @@ -60,11 +56,7 @@ class Config: "verbosity": 3 # 1: minimum, 2: standard, 3: rich } - DDBJ_SUBMISSION = { - "enabled": True, - "output_verbosity": 1, - "metadata_file": None - } + DDBJ_SUBMISSION = {"enabled": True, "output_verbosity": 1, "metadata_file": None} GENBANK_SUBMISSION = { "enabled": True, @@ -72,7 +64,6 @@ class Config: "output_verbosity": 1, } - STRUCTURAL_ANNOTATION = [ { # GAP is a Gap Annotation Process that identifies gap regions (N's or n's runs) in the sequence. @@ -81,7 +72,7 @@ class Config: "options": { "len_cutoff": 5, # Gaps shorter than len_cutoff are ignored. "linkage_evidence": "paired-ends", # You can change this as you like. - "gap_type": "within scaffold" # You can change this as you like. + "gap_type": "within scaffold", # You can change this as you like. }, }, { @@ -104,30 +95,24 @@ class Config: # Please insall tRNAscan-SE and put it in your PATH to enable this. "tool_name": "tRNAscan", "enabled": False, - "options": { - "model": "--bact", # --bact, --arch, --organ, --general - "cmd_options": "" - }, + "options": {"model": "--bact", "cmd_options": ""}, # --bact, --arch, --organ, --general }, { # Barrnap for rRNA prediction "tool_name": "Barrnap", - "enabled": False, - "options": { - # Currently, Barrnap will run with default settings. - # You can set parameters such as --reject and --lencutoff to cmd_options. - # "cmd_options": "--reject 0.4 --lencutoff 0.6" - }, + "enabled": False, + "options": { + # Currently, Barrnap will run with default settings. + # You can set parameters such as --reject and --lencutoff to cmd_options. + # "cmd_options": "--reject 0.4 --lencutoff 0.6" + }, }, { # RNAmmer for rRNA prediction. By default, this is disabled. # Please insall RNAmmer and put it in your PATH to enable this. "tool_name": "RNAmmer", "enabled": False, - "options": { - "model": "bac", # arc/bac/euk - "cmd_options": "" - }, + "options": {"model": "bac", "cmd_options": ""}, # arc/bac/euk }, { # CRT for CRISPR detection @@ -151,17 +136,16 @@ class Config: "transl_table": 11, "cmd_options": "", }, - }, + }, ] FUNCTIONAL_ANNOTATION = [ # Fucntional annotation steps will be conducted in the order specified in this list. # You can swithch enabled/disabled, change the order, or add new steps. - { # OrthoSearch (All-vs-all pairwise alignment between each reference genome to assign orthologous genes) # Normally, this should be run before other annotation steps. - # In the default workflow, it is disabled. You can enable this by using the "--references" option. + # In the default workflow, it is disabled. You can enable this by using the "--references" option. "component_name": "OrthoSearch", "enabled": False, "options": { @@ -171,12 +155,11 @@ class Config: "scov_cutoff": 75, "aligner": "ghostx", # ghostx, ghostz, or blastp "aligner_options": {}, # Normally, leave this empty. (Current version does not use this option.) - "references": [ - ] + "references": [], }, }, { - # By default, this is disabled. + # By default, this is disabled. # If you want to add your original databases to be searched in prior to default DB, # set 'enabled' to True and specify 'database' # The database file must be in a DFAST reference format, @@ -254,7 +237,7 @@ class Config: "skipAnnotatedFeatures": False, "evalue_cutoff": 1e-6, "db_name": "", # eg 'Pfam', - "database": "" # eg '@@APP_ROOT@@/db/hmm/Pfam-A.hmm' + "database": "", # eg '@@APP_ROOT@@/db/hmm/Pfam-A.hmm' }, }, { @@ -280,5 +263,4 @@ class Config: "rpsbproc_data": "@@APP_ROOT@@/bin/common/rpsbproc_data", # Do not change this. }, }, - ] diff --git a/docs/output.md b/docs/output.md index d5f221c9..2f5423e1 100644 --- a/docs/output.md +++ b/docs/output.md @@ -10,18 +10,18 @@ The directories listed below will be created in the results directory after the The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes data using the following steps: -* [Quality trimming and QC](#quality-trimming-and-qc) - * [Short Read Trimming](#short-read-trimming) - * [Short Read RAW QC](#short-read-raw-qc) - * [Long Read Trimming](#long-read-trimming) - * [Long Read RAW QC](#long-read-raw-qc) -* [Taxonomic classification](#taxonomic-classification) -* [Assembly Output](#assembly-output) - * [Polished assemblies](#polished-assemblies) -* [Assembly QC with QUAST](#assembly-qc-with-quast) -* [Annotation](#annotation) -* [Report](#report) -* [Pipeline information](#pipeline-information) - Report metrics generated during the workflow execution +- [Quality trimming and QC](#quality-trimming-and-qc) + - [Short Read Trimming](#short-read-trimming) + - [Short Read RAW QC](#short-read-raw-qc) + - [Long Read Trimming](#long-read-trimming) + - [Long Read RAW QC](#long-read-raw-qc) +- [Taxonomic classification](#taxonomic-classification) +- [Assembly Output](#assembly-output) + - [Polished assemblies](#polished-assemblies) +- [Assembly QC with QUAST](#assembly-qc-with-quast) +- [Annotation](#annotation) +- [Report](#report) +- [Pipeline information](#pipeline-information) - Report metrics generated during the workflow execution ## Quality trimming and QC @@ -33,8 +33,8 @@ combines reads coming from multiple sequencing runs.
    Output files -* `trimming/shortreads/` - * `*.fastp.fastq.gz`: The trimmed/modified/unmerged fastq reads +- `trimming/shortreads/` + - `*.fastp.fastq.gz`: The trimmed/modified/unmerged fastq reads
    @@ -47,9 +47,9 @@ combines reads coming from multiple sequencing runs.
    Output files -* `FastQC/` - * `*.html`: FastQC report containing quality metrics. - * `*.zip`: Zip archive containing the FastQC report, tab-delimited data file and plot images. +- `FastQC/` + - `*.html`: FastQC report containing quality metrics. + - `*.zip`: Zip archive containing the FastQC report, tab-delimited data file and plot images. ![FastQC report](images/fastqc.png) @@ -62,9 +62,9 @@ This step performs long read trimming on Nanopore input (if provided).
    Output files -* `trimming/longreads/` - * `*.fastq.gz`: The trimmed FASTQ file - * `*.log*`: Log file +- `trimming/longreads/` + - `*.fastq.gz`: The trimmed FASTQ file + - `*.log*`: Log file
    @@ -77,11 +77,11 @@ Please refer to the documentation of [NanoPlot](https://github.com/wdecoster/Nan
    Output files -* `QC_Longreads/NanoPlot`: Various plots in HTML and PNG format +- `QC_Longreads/NanoPlot`: Various plots in HTML and PNG format -* `QC_Longreads/PycoQC` - * `{sample_id}_pycoqc.html`: QC report in HTML format - * `{sample_id}_pycoqc.json`: QC report in JSON format +- `QC_Longreads/PycoQC` + - `{sample_id}_pycoqc.html`: QC report in HTML format + - `{sample_id}_pycoqc.json`: QC report in JSON format Example plot from Nanoplot: @@ -99,9 +99,9 @@ multiple species. If you like to visualize the report, try
    Output files -* `Kraken2/` - * `{sample}.kraken2.report.txt`: Classification of short reads in the Kraken(1) report format. - * `{sample}_longreads.kraken2.report.txt`: Classification of long reads in the Kraken(1) report format. +- `Kraken2/` + - `{sample}.kraken2.report.txt`: Classification of short reads in the Kraken(1) report format. + - `{sample}_longreads.kraken2.report.txt`: Classification of long reads in the Kraken(1) report format. See [webpage](http://ccb.jhu.edu/software/kraken/MANUAL.html#sample-reports) for more details. @@ -119,22 +119,22 @@ Unicycler is a pipeline on its own, which at least for Illumina reads mainly act
    Output files -* `Unicycler/` - * `{sample}.scaffolds.fa`: Final assembly in fasta format - * `{sample}.assembly.gfa`: Final assembly in Graphical Fragment Assembly (GFA) format - * `{sample}.unicycler.log`: Log file summarizing steps and intermediate results on the Unicycler execution +- `Unicycler/` + - `{sample}.scaffolds.fa`: Final assembly in fasta format + - `{sample}.assembly.gfa`: Final assembly in Graphical Fragment Assembly (GFA) format + - `{sample}.unicycler.log`: Log file summarizing steps and intermediate results on the Unicycler execution Check out the [Unicycler documentation](https://github.com/rrwick/Unicycler) for more information on Unicycler output. -* `Canu/` - * `{sample}.contigs.fasta.gz`: Final assembly in fasta format - * `{sample}.report`: Log file summarizing steps and intermediate results +- `Canu/` + - `{sample}.contigs.fasta.gz`: Final assembly in fasta format + - `{sample}.report`: Log file summarizing steps and intermediate results Check out the [Canu documentation](https://canu.readthedocs.io/en/latest/index.html) for more information on Canu output. -* `Miniasm/` - * `{sample}.fasta.gz`: Assembly in Fasta format - * `{sample}_assembly_consensus.fasta.gz`: Consensus assembly in fasta format (polished by Racon) +- `Miniasm/` + - `{sample}.fasta.gz`: Assembly in Fasta format + - `{sample}_assembly_consensus.fasta.gz`: Consensus assembly in fasta format (polished by Racon) Check out the [Miniasm documentation](https://github.com/lh3/miniasm) for more information on Miniasm output. @@ -147,15 +147,16 @@ Long reads assemblies can be polished using [Medaka](https://github.com/nanopore
    Output files -* `Medaka/{sample_id}_polished_genome.fa` - * `*_polished_genome.fa`: Polished consensus assembly in fasta format - * `calls_to_draft.bam`: Alignment in bam format - * `calls_to_draft.bam.bai`: Index of alignment - * `consensus.fasta.gaps_in_draft_coords.bed` - * `consensus_probs.hdf` +- `Medaka/{sample_id}_polished_genome.fa` -* `Nanopolish/` - * `polished_genome.fa`: Polished consensus assembly in fasta format + - `*_polished_genome.fa`: Polished consensus assembly in fasta format + - `calls_to_draft.bam`: Alignment in bam format + - `calls_to_draft.bam.bai`: Index of alignment + - `consensus.fasta.gaps_in_draft_coords.bed` + - `consensus_probs.hdf` + +- `Nanopolish/` + - `polished_genome.fa`: Polished consensus assembly in fasta format
    @@ -166,12 +167,12 @@ The assembly QC is performed with [QUAST](http://quast.sourceforge.net/quast) fo
    Output files -* `QUAST` - * `report.tsv`: QUAST's report in text format -* `QUAST/report` - * `icarus.html`: QUAST's contig browser as HTML - * `report.html`: QUAST assembly QC as HTML report - * `report.pdf`: QUAST assembly QC as pdf +- `QUAST` + - `report.tsv`: QUAST's report in text format +- `QUAST/report` + - `icarus.html`: QUAST's contig browser as HTML + - `report.html`: QUAST assembly QC as HTML report + - `report.pdf`: QUAST assembly QC as pdf ![QUAST QC](images/quast.png) @@ -186,19 +187,19 @@ By default, the assembly is annotated with [Prokka](https://github.com/tseemann/
    Output files -* `Prokka/{sample_id}/` - * `{sample_id}.gff`: Annotation in gff format - * `{sample_id}.txt`: Annotation in text format - * `{sample_id}.faa`: Protein sequences in fasta format +- `Prokka/{sample_id}/` + - `{sample_id}.gff`: Annotation in gff format + - `{sample_id}.txt`: Annotation in text format + - `{sample_id}.faa`: Protein sequences in fasta format See [Prokka's documentation](https://github.com/tseemann/prokka#output-files) for a full description of all output files. ![Prokka annotation](images/prokka.png) -* `DFAST/{sample_id}_results/` - * `genome.gff`: Annotation in gff format - * `statistics.txt`: Annotation statistics in text format - * `protein.faa`: Protein sequences in fasta format +- `DFAST/{sample_id}_results/` + - `genome.gff`: Annotation in gff format + - `statistics.txt`: Annotation statistics in text format + - `protein.faa`: Protein sequences in fasta format
    diff --git a/docs/usage.md b/docs/usage.md index f2493e49..e35d36dd 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -27,13 +27,13 @@ shortNlong ./data/S1_R1.fastq.gz ./data/S1_R2.fastq.gz ./data/S1_long_f > **NB:** `./data/FAST5` points at a folder containing all (i.e. one or mutiple) fast5 files that correspond to the long reads. `NA` indicates that the file is missing. -| Column | Description | -|-|-| -| `sample` | Custom sample name. May not contain spaces. | -| `R1` | Full path to FastQ file for Illumina short reads 1. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". `NA` indicates that the file is missing. | -| `R2` | Full path to FastQ file for Illumina short reads 2. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". `NA` indicates that the file is missing. | -| `LongFastQ` | Full path to FastQ file for ONT long reads. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". `NA` indicates that the file is missing. | -| `Fast5` | Full path to a folder containing Fast5 file(s) for ONT long reads. `NA` indicates that there are no Fast5 files available. | +| Column | Description | +| ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `sample` | Custom sample name. May not contain spaces. | +| `R1` | Full path to FastQ file for Illumina short reads 1. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". `NA` indicates that the file is missing. | +| `R2` | Full path to FastQ file for Illumina short reads 2. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". `NA` indicates that the file is missing. | +| `LongFastQ` | Full path to FastQ file for ONT long reads. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". `NA` indicates that the file is missing. | +| `Fast5` | Full path to a folder containing Fast5 file(s) for ONT long reads. `NA` indicates that there are no Fast5 files available. | | `GenomeSize` | Expected genome size. For example, `2.8m` means 2.8 million basepairs genome size expected. This is only used by Canu assembler. `NA` indicates that this value is unknown. | An [example samplesheet](../assets/samplesheet.csv) has been provided with the pipeline. diff --git a/nextflow_schema.json b/nextflow_schema.json index fe2754ce..119f5403 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -52,14 +52,8 @@ "type": "boolean", "description": "save all merged reads to the a file ending in `*.merged.fastq.gz`" }, - "skip_fastqc": { - "type": "boolean", - "description": "Skip FastQC" - }, - "skip_fastp": { - "type": "boolean", - "description": "Skip FastP" - } + "skip_fastqc": { "type": "boolean", "description": "Skip FastQC" }, + "skip_fastp": { "type": "boolean", "description": "Skip FastP" } } }, "contamination_screening": { @@ -183,10 +177,7 @@ "fa_icon": "fas fa-forward", "description": "Skip polishing the long-read assembly with fast5 input. Will not affect short/hybrid assemblies." }, - "skip_multiqc": { - "type": "boolean", - "description": "Skip MultiQC" - } + "skip_multiqc": { "type": "boolean", "description": "Skip MultiQC" } } }, "institutional_config_options": { @@ -396,35 +387,15 @@ } }, "allOf": [ - { - "$ref": "#/definitions/input_output_options" - }, - { - "$ref": "#/definitions/qc_and_trim" - }, - { - "$ref": "#/definitions/contamination_screening" - }, - { - "$ref": "#/definitions/assembly_parameters" - }, - { - "$ref": "#/definitions/assembly_polishing" - }, - { - "$ref": "#/definitions/annotation" - }, - { - "$ref": "#/definitions/skipping_options" - }, - { - "$ref": "#/definitions/institutional_config_options" - }, - { - "$ref": "#/definitions/max_job_request_options" - }, - { - "$ref": "#/definitions/generic_options" - } + { "$ref": "#/definitions/input_output_options" }, + { "$ref": "#/definitions/qc_and_trim" }, + { "$ref": "#/definitions/contamination_screening" }, + { "$ref": "#/definitions/assembly_parameters" }, + { "$ref": "#/definitions/assembly_polishing" }, + { "$ref": "#/definitions/annotation" }, + { "$ref": "#/definitions/skipping_options" }, + { "$ref": "#/definitions/institutional_config_options" }, + { "$ref": "#/definitions/max_job_request_options" }, + { "$ref": "#/definitions/generic_options" } ] } From 686279d0047aac3bb3fbe9a5502e9eab846e8067 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Mon, 11 Sep 2023 18:34:04 +0200 Subject: [PATCH 14/21] fix editorConfig --- .github/workflows/ci.yml | 2 +- conf/modules.config | 2 +- conf/test_dfast.config | 4 ++-- modules/local/dfast.nf | 1 - modules/local/kraken2_db_preparation.nf | 2 +- modules/local/medaka.nf | 2 +- 6 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9eab305d..02204b23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: if: ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/bacass') }} runs-on: ubuntu-latest env: - NXF_VER: '21.04.0' + NXF_VER: '23.04.0' NXF_ANSI_LOG: false strategy: matrix: diff --git a/conf/modules.config b/conf/modules.config index 63961459..aa0d621d 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -142,7 +142,7 @@ process { if (filename.equals('versions.yml')) { null } else { - "${filename.replaceFirst('\\..+$', '')}_longreads${filename.substring(filename.lastIndexOf('.'))}" + "${filename.replaceFirst('\\..+$', '')}_longreads${filename.substring(filename.lastIndexOf('.'))}" } } ] diff --git a/conf/test_dfast.config b/conf/test_dfast.config index 756554d9..2ab10265 100644 --- a/conf/test_dfast.config +++ b/conf/test_dfast.config @@ -27,5 +27,5 @@ params { annotation_tool = 'dfast' assembly_type = 'short' skip_pycoqc = true - skip_kraken2 = true -} \ No newline at end of file + skip_kraken2 = true +} diff --git a/modules/local/dfast.nf b/modules/local/dfast.nf index 001518fb..db7be3da 100644 --- a/modules/local/dfast.nf +++ b/modules/local/dfast.nf @@ -22,7 +22,6 @@ process DFAST { def args = task.ext.args ?: '' def args2 = task.ext.args2 ?: '' def prefix = task.ext.prefix ?: "${meta.id}" - """ dfast_file_downloader.py \\ $args \\ diff --git a/modules/local/kraken2_db_preparation.nf b/modules/local/kraken2_db_preparation.nf index aa10cde4..bfcb945d 100644 --- a/modules/local/kraken2_db_preparation.nf +++ b/modules/local/kraken2_db_preparation.nf @@ -3,7 +3,7 @@ process KRAKEN2_DB_PREPARATION { label 'process_low' conda 'conda-forge::sed=4.7' - container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv1/biocontainers_v1.2.0_cv1.img' : 'biocontainers/biocontainers:v1.2.0_cv1' }" diff --git a/modules/local/medaka.nf b/modules/local/medaka.nf index 0d711a6c..e57666a8 100644 --- a/modules/local/medaka.nf +++ b/modules/local/medaka.nf @@ -35,7 +35,7 @@ process MEDAKA { -d ${ assembly_bgzip_out ?: assembly } \ -o "${prefix}_polished_genome.fa" \ -t $task.cpus - + cat <<-END_VERSIONS > versions.yml "${task.process}": medaka: \$( medaka --version 2>&1 | sed 's/medaka //g' ) From 3858449e4c94e277bdda175360db30a2fb43b474 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Mon, 11 Sep 2023 18:39:23 +0200 Subject: [PATCH 15/21] fix prettier typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02204b23..2a9d3723 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: if: ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/bacass') }} runs-on: ubuntu-latest env: - NXF_VER: '23.04.0' + NXF_VER: "23.04.0" NXF_ANSI_LOG: false strategy: matrix: From a1fc98abf6ac030bd07022062a897a9601969381 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Tue, 12 Sep 2023 15:12:56 +0200 Subject: [PATCH 16/21] fix CI test --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a9d3723..bf037552 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: # For example: adding multiple test runs with different parameters # Remember that you can parallelise this by using strategy.matrix run: | - nextflow run ${GITHUB_WORKSPACE} -profile test,docker + nextflow run ${GITHUB_WORKSPACE} -profile test,docker --outdir results profiles: name: Run workflow profile @@ -65,4 +65,4 @@ jobs: sudo mv nextflow /usr/local/bin/ - name: Run pipeline with ${{ matrix.profile }} test profile run: | - nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.profile }},docker + nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.profile }},docker --outdir results From 61d4761271eb9b4cf14bcb3f2be449cf834ea556 Mon Sep 17 00:00:00 2001 From: Daniel-VM Date: Wed, 13 Sep 2023 17:28:03 +0200 Subject: [PATCH 17/21] Fix missing snippet while merging conflicts --- modules/local/kraken2_db_preparation.nf | 2 +- nextflow.config | 32 +++++++++++++++++++++++-- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/modules/local/kraken2_db_preparation.nf b/modules/local/kraken2_db_preparation.nf index bfcb945d..d2af01b6 100644 --- a/modules/local/kraken2_db_preparation.nf +++ b/modules/local/kraken2_db_preparation.nf @@ -5,7 +5,7 @@ process KRAKEN2_DB_PREPARATION { conda 'conda-forge::sed=4.7' container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv1/biocontainers_v1.2.0_cv1.img' : - 'biocontainers/biocontainers:v1.2.0_cv1' }" + 'docker.io/biocontainers/biocontainers:v1.2.0_cv1' }" input: path db diff --git a/nextflow.config b/nextflow.config index f60a4dc6..cc5c6a33 100644 --- a/nextflow.config +++ b/nextflow.config @@ -15,7 +15,7 @@ params { // QC and trimming options save_trimmed_fail = false save_merged = false - + // Contamination_screening kraken2db = "" @@ -70,7 +70,7 @@ params { custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}" config_profile_contact = null config_profile_url = null - + // Max resource options // Defaults only, expecting to be overwritten @@ -177,6 +177,21 @@ profiles { singularity.enabled = false podman.enabled = false shifter.enabled = false + apptainer.enabled = false + } + apptainer { + apptainer.enabled = true + conda.enabled = false + docker.enabled = false + singularity.enabled = false + podman.enabled = false + shifter.enabled = false + charliecloud.enabled = false + } + gitpod { + executor.name = 'local' + executor.cpus = 16 + executor.memory = 60.GB } test { includeConfig 'conf/test.config' } test_dfast { includeConfig 'conf/test_dfast.config' } @@ -186,6 +201,19 @@ profiles { test_full { includeConfig 'conf/test_full.config' } } +// Set default registry for Apptainer, Docker, Podman and Singularity independent of -profile +// Will not be used unless Apptainer / Docker / Podman / Singularity are enabled +// Set to your registry if you have a mirror of containers +apptainer.registry = 'quay.io' +docker.registry = 'quay.io' +podman.registry = 'quay.io' +singularity.registry = 'quay.io' + +// Nextflow plugins +plugins { + id 'nf-validation' // Validation of pipeline parameters and creation of an input channel from a sample sheet +} + // Export these variables to prevent local Python/R libraries from conflicting with those in the container // The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container. // See https://apeltzer.github.io/post/03-julia-lang-nextflow/ for details on that. Once we have a common agreement on where to keep Julia packages, this is adjustable. From c9dbfcc25f801722318939eab01377b5c35d45c2 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Tue, 19 Sep 2023 09:18:38 +0200 Subject: [PATCH 18/21] make patch to Nanoplot --- conf/modules.config | 3 +- modules.json | 6 ++ .../nanoplot/main.nf} | 3 +- modules/nf-core/nanoplot/meta.yml | 59 +++++++++++++++++++ modules/nf-core/nanoplot/nanoplot.diff | 15 +++++ 5 files changed, 82 insertions(+), 4 deletions(-) rename modules/{local/nanoplot_custom.nf => nf-core/nanoplot/main.nf} (91%) create mode 100644 modules/nf-core/nanoplot/meta.yml create mode 100644 modules/nf-core/nanoplot/nanoplot.diff diff --git a/conf/modules.config b/conf/modules.config index aa0d621d..4403db65 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -10,11 +10,10 @@ ---------------------------------------------------------------------------------------- */ -// TODO: Think about segregating modules.config in modules_shortreads.config and modules_longreads.config files // Let modules.config to store module configurations that share both shortreads and longreads process { - withName: 'NANOPLOT_CUSTOM' { + withName: 'NANOPLOT' { ext.args = '' publishDir = [ path: { "${params.outdir}/QC_longreads/NanoPlot" }, diff --git a/modules.json b/modules.json index 514171f2..b7e35f46 100644 --- a/modules.json +++ b/modules.json @@ -50,6 +50,12 @@ "git_sha": "a6e11ac655e744f7ebc724be669dd568ffdc0e80", "installed_by": ["modules"] }, + "nanoplot": { + "branch": "master", + "git_sha": "911696ea0b62df80e900ef244d7867d177971f73", + "installed_by": ["modules"], + "patch": "modules/nf-core/nanoplot/nanoplot.diff" + }, "porechop/porechop": { "branch": "master", "git_sha": "911696ea0b62df80e900ef244d7867d177971f73", diff --git a/modules/local/nanoplot_custom.nf b/modules/nf-core/nanoplot/main.nf similarity index 91% rename from modules/local/nanoplot_custom.nf rename to modules/nf-core/nanoplot/main.nf index 6cdec625..e276cc89 100644 --- a/modules/local/nanoplot_custom.nf +++ b/modules/nf-core/nanoplot/main.nf @@ -1,5 +1,4 @@ -// Imported from nf-core/modules/nanoplot but allow it to work with *.fq.gz files too. -process NANOPLOT_CUSTOM { +process NANOPLOT { tag "$meta.id" label 'process_low' diff --git a/modules/nf-core/nanoplot/meta.yml b/modules/nf-core/nanoplot/meta.yml new file mode 100644 index 00000000..28c8c2d3 --- /dev/null +++ b/modules/nf-core/nanoplot/meta.yml @@ -0,0 +1,59 @@ +name: nanoplot +description: Run NanoPlot on nanopore-sequenced reads +keywords: + - quality control + - qc + - fastq + - sequencing summary + - nanopore +tools: + - nanoplot: + description: | + NanoPlot is a tool for ploting long-read sequencing data and + alignment. + homepage: http://nanoplot.bioinf.be + documentation: https://github.com/wdecoster/NanoPlot + licence: ["GPL-3.0-or-later"] +input: + - meta: + type: map + description: | + Groovy Map containing sample information + e.g. [ id:'test', single_end:false ] + - fastq: + type: file + description: | + List of input basecalled-FastQ files. + - summary_txt: + type: file + description: | + List of sequencing_summary.txt files from running basecalling. +output: + - meta: + type: map + description: | + Groovy Map containing sample information + e.g. [ id:'test', single_end:false ] + - html: + type: file + description: NanoPlot report + pattern: "*{.html}" + - png: + type: file + description: Plots generated by NanoPlot + pattern: "*{.png}" + - txt: + type: file + description: Stats from NanoPlot + pattern: "*{.txt}" + - log: + type: file + description: log file of NanoPlot run + pattern: "*{.log}" + - versions: + type: file + description: File containing software versions + pattern: "versions.yml" +authors: + - "@drpatelh" + - "@yuukiiwa" diff --git a/modules/nf-core/nanoplot/nanoplot.diff b/modules/nf-core/nanoplot/nanoplot.diff new file mode 100644 index 00000000..dc4cc687 --- /dev/null +++ b/modules/nf-core/nanoplot/nanoplot.diff @@ -0,0 +1,15 @@ +Changes in module 'nf-core/nanoplot' +--- modules/nf-core/nanoplot/main.nf ++++ modules/nf-core/nanoplot/main.nf +@@ -22,8 +22,7 @@ + + script: + def args = task.ext.args ?: '' +- def input_file = ("$ontfile".endsWith(".fastq.gz")) ? "--fastq ${ontfile}" : +- ("$ontfile".endsWith(".txt")) ? "--summary ${ontfile}" : '' ++ def input_file = ("$ontfile".endsWith(".fastq.gz") || "$ontfile".endsWith(".fq.gz")) ? "--fastq ${ontfile}" : ("$ontfile".endsWith(".txt")) ? "--summary ${ontfile}" : '' + """ + NanoPlot \\ + $args \\ + +************************************************************ From 715b86aeaba0699c49575dd5db82269576303213 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Tue, 19 Sep 2023 16:58:46 +0200 Subject: [PATCH 19/21] Apply suggestios from code reviewer --- .nf-core.yml | 3 + CHANGELOG.md | 50 ++- CITATIONS.md | 34 +- README.md | 19 +- assets/{samplesheet.csv => samplesheet.tsv} | 0 bin/check_samplesheet.py | 259 ------------ conf/igenomes.config | 440 -------------------- docs/output.md | 35 +- docs/usage.md | 7 +- modules/local/pycoqc.nf | 5 +- modules/local/samplesheet_check.nf | 31 -- nextflow.config | 108 +++-- workflows/bacass.nf | 22 +- 13 files changed, 146 insertions(+), 867 deletions(-) rename assets/{samplesheet.csv => samplesheet.tsv} (100%) delete mode 100755 bin/check_samplesheet.py delete mode 100644 conf/igenomes.config delete mode 100644 modules/local/samplesheet_check.nf diff --git a/.nf-core.yml b/.nf-core.yml index 3805dc81..778ae193 100644 --- a/.nf-core.yml +++ b/.nf-core.yml @@ -1 +1,4 @@ repository_type: pipeline +lint: + files_exist: + - conf/igenomes.config diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bccdc38..3e70f466 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v2.0.1dev nf-core/bacass: "Navy Steel Swordfish" - 2023/09/11 +## v2.1.0dev nf-core/bacass: "Navy Steel Swordfish" - 2023/09/11 This version merges the nf-core template update v2.9. It also updates modules or dependencies to make them work with the new template. ### `Changed` -- [#84](https://github.com/nf-core/bacass/pull/84) & [#85](https://github.com/nf-core/bacass/issues/85) - Update nf-core/bacass to the new nf-core 2.0 `TEMPLATE`. +- [#86](https://github.com/nf-core/bacass/pull/86) - Update nf-core/bacass to the new nf-core 2.9 `TEMPLATE`. - [#61](https://github.com/nf-core/bacass/issues/61) - Update local/modules to nf-core/modules (detailed below). @@ -26,38 +26,44 @@ This version merges the nf-core template update v2.9. It also updates modules or ### `Dependencies` -- [#61](https://github.com/nf-core/bacass/issues/61) - Update a bunch of local/modules to nf-core/modules plus version update. +- [#61](https://github.com/nf-core/bacass/issues/61) - Update local/modules to nf-core/modules plus version update. - - Canu (v2.1.1 → v2.2) - - Minimap2 (v2.21 → v2.24) - - Miniasm - - Racon +| Tool | Previous version | New version | +| ------ | ---------------- | ----------- | +| Canu | 2.1.1 | 2.2 | +| Minimap2 | 2.21 | 2.2 | +| Miniasm | 0.3 | - | +| Racon | 1.4.20-1 | - | -- [#84](https://github.com/nf-core/bacass/pull/84) Update already nf-core modules +- Update already nf-core modules - - Fastqc - - Samtools (v1.13 → v1.17) - - Kraken2 (v2.1.1 → v2.1.2) - - Quast (v5.0.2 → 5.2.0) - - Prokka - - Multiqc (v1.10.1 → v1.15) +| Tool | Previous version | New version | +| ------ | ---------------- | ----------- | +| Fastqc | 0.11.9 | - | +| Samtools | 1.13 | 2.1.2 | +| Kraken2 | 2.1.1 | 2.1.2 | +| Quast | 5.0.2 | 5.2.0 | +| Prokka | 1.14.6 | - | +| Multiqc | 1.10.1 | 1.15 | - Refactor `local/modules` making them follow nf-core v2.9 structure/fashion. - - Dfast - - Medaka - - Nanoplot (v1.38.0 → v1.41.6) - - Nanopolish (v0.13.2-5 → 0.14.0) - - Pycoqc - - Unicycler +| Tool | Previous version | New version | +| ------ | ---------------- | ----------- | +| Dfast | 1.2.14 | - | +| Medaka | 1.4.3-0 | - | +| Nanoplot | 1.38.0 | 1.41.6 | + | Nanopolish | 0.13.2-5 | 0.14.0 | + | Pycoqc | 2.5.2 | - | + | Unicycler | 0.4.8 | - | + ### `Deprecated` -- [#61](https://github.com/nf-core/bacass/issues/61) - Replace depecated modules with nf-core/modules. +- [#86](https://github.com/nf-core/bacass/pull/86) Replace depecated modules with nf-core/modules. - Replace `local/get_software_versions.nf` with `nf-core/custom/dumpsoftwareversions.nf` - Replace `local/skewer` by `nf-core/fastp` and wrap fastqc plus fastp into `subworkflows/nf-core/fastq_trim_fastp_fastqc` - - Replace `local/nanoplot` by local/nanoplot_custom (using as template nf-core/nanoplot). ## v2.0.0 nf-core/bacass: "Navy Steel Swordfish" 2021/08/27 diff --git a/CITATIONS.md b/CITATIONS.md index eb335184..b5969616 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -12,53 +12,55 @@ - [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) -* [Skewer](https://pubmed.ncbi.nlm.nih.gov/24925680/) +- [FastP](https://github.com/OpenGene/fastp) - > Jiang H, Lei R, Ding SW, Zhu S. Skewer: a fast and accurate adapter trimmer for next-generation sequencing paired-end reads. BMC Bioinformatics. 2014 Jun 12;15:182. doi: 10.1186/1471-2105-15-182. PMID: 24925680; PMCID: PMC4074385. + > Chen S, Zhou Y, Chen Y, Gu J. fastp: an ultra-fast all-in-one FASTQ preprocessor. Bioinformatics. 2018 Sep 1;34(17):i884-i890. doi: 10.1093/bioinformatics/bty560. PMID: 30423086; PMCID: PMC6129281. -* [Porechop](https://github.com/rrwick/Porechop) +- [Porechop](https://github.com/rrwick/Porechop) -* [NanoPlot](https://doi.org/10.1093/bioinformatics/bty149) +- [NanoPlot](https://doi.org/10.1093/bioinformatics/bty149) > De Coster, W., D’Hert, S., Schultz, D. T., Cruts, M., & Van Broeckhoven, C. (2018). NanoPack: visualizing and processing long-read sequencing data. Bioinformatics, 34(15), 2666-2669. doi: 10.1093/bioinformatics/bty149. -* [pycoQC](https://github.com/tleonardi/pycoQC) +- [pycoQC](https://github.com/tleonardi/pycoQC) -* [Unicycler](https://pubmed.ncbi.nlm.nih.gov/28594827/) +- [Unicycler](https://pubmed.ncbi.nlm.nih.gov/28594827/) > Wick RR, Judd LM, Gorrie CL, Holt KE. Unicycler: Resolving bacterial genome assemblies from short and long sequencing reads. PLoS Comput Biol. 2017 Jun 8;13(6):e1005595. doi: 10.1371/journal.pcbi.1005595. PMID: 28594827; PMCID: PMC5481147. -* [Miniasm](https://github.com/lh3/miniasm) with [Racon](https://github.com/isovic/racon) +- [Miniasm](https://github.com/lh3/miniasm) with [Racon](https://github.com/isovic/racon) -* [Canu](https://pubmed.ncbi.nlm.nih.gov/28298431/) + > Li H. Minimap and miniasm: fast mapping and de novo assembly for noisy long sequences. Bioinformatics. 2016 Jul 15;32(14):2103-10. doi: 10.1093/bioinformatics/btw152. Epub 2016 Mar 19. PMID: 27153593; PMCID: PMC4937194. + +- [Canu](https://pubmed.ncbi.nlm.nih.gov/28298431/) > Koren S, Walenz BP, Berlin K, Miller JR, Bergman NH, Phillippy AM. Canu: scalable and accurate long-read assembly via adaptive k-mer weighting and repeat separation. Genome Res. 2017 May;27(5):722-736. doi: 10.1101/gr.215087.116. Epub 2017 Mar 15. PMID: 28298431; PMCID: PMC5411767. -* [QUAST](https://pubmed.ncbi.nlm.nih.gov/23422339/) +- [QUAST](https://pubmed.ncbi.nlm.nih.gov/23422339/) > Gurevich A, Saveliev V, Vyahhi N, Tesler G. QUAST: quality assessment tool for genome assemblies. Bioinformatics. 2013 Apr 15;29(8):1072-5. doi: 10.1093/bioinformatics/btt086. Epub 2013 Feb 19. PMID: 23422339; PMCID: PMC3624806. -* [Prokka](https://pubmed.ncbi.nlm.nih.gov/24642063/) +- [Prokka](https://pubmed.ncbi.nlm.nih.gov/24642063/) > Seemann T. Prokka: rapid prokaryotic genome annotation. Bioinformatics. 2014 Jul 15;30(14):2068-9. doi: 10.1093/bioinformatics/btu153. Epub 2014 Mar 18. PMID: 24642063. -* [DFAST](https://pubmed.ncbi.nlm.nih.gov/29106469/) +- [DFAST](https://pubmed.ncbi.nlm.nih.gov/29106469/) > Tanizawa Y, Fujisawa T, Nakamura Y. DFAST: a flexible prokaryotic genome annotation pipeline for faster genome publication. Bioinformatics. 2018 Mar 15;34(6):1037-1039. doi: 10.1093/bioinformatics/btx713. PMID: 29106469; PMCID: PMC5860143. -* [Medaka](https://github.com/nanoporetech/medaka) +- [Medaka](https://github.com/nanoporetech/medaka) -* [Nanopolish](https://github.com/jts/nanopolish) +- [Nanopolish](https://github.com/jts/nanopolish) -* [SAMtools](https://doi.org/10.1093/bioinformatics/btp352) +- [SAMtools](https://doi.org/10.1093/bioinformatics/btp352) > Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J., Homer, N., … 1000 Genome Project Data Processing Subgroup. (2009). The Sequence Alignment/Map format and SAMtools. Bioinformatics , 25(16), 2078–2079. doi: 10.1093/bioinformatics/btp352. -* [Kraken2](https://doi.org/10.1186/s13059-019-1891-0) +- [Kraken2](https://doi.org/10.1186/s13059-019-1891-0) > Wood, D et al., 2019. Improved metagenomic analysis with Kraken 2. Genome Biology volume 20, Article number: 257. doi: 10.1186/s13059-019-1891-0. -* [MultiQC](https://www.ncbi.nlm.nih.gov/pubmed/27312411/) +- [MultiQC](https://www.ncbi.nlm.nih.gov/pubmed/27312411/) > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924 ## Data diff --git a/README.md b/README.md index 641f037c..48f0d4a8 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ On release, automated continuous integration tests run the pipeline on a full-si ### Short Read Assembly -This pipeline is primarily for bacterial assembly of next-generation sequencing reads. It can be used to quality trim your reads using [Skewer](https://github.com/relipmoc/skewer) and performs basic sequencing QC using [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/). Afterwards, the pipeline performs read assembly using [Unicycler](https://github.com/rrwick/Unicycler). Contamination of the assembly is checked using [Kraken2](https://ccb.jhu.edu/software/kraken2/) to verify sample purity. +This pipeline is primarily for bacterial assembly of next-generation sequencing reads. It can be used to quality trim your reads using [FastP](https://github.com/OpenGene/fastp) and performs basic sequencing QC using [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/). Afterwards, the pipeline performs read assembly using [Unicycler](https://github.com/rrwick/Unicycler). Contamination of the assembly is checked using [Kraken2](https://ccb.jhu.edu/software/kraken2/) to verify sample purity. ### Long Read Assembly @@ -52,16 +52,19 @@ In all cases, the assembly is assessed using [QUAST](http://bioinf.spbau.ru/quas First, prepare a samplesheet with your input data that looks as follows: -`samplesheet.csv`: +`samplesheet.tsv`: + +```tsv +ID R1 R2 LongFastQ Fast5 GenomeSize +shortreads ./data/S1_R1.fastq.gz ./data/S1_R2.fastq.gz NA NA NA +longreads NA NA ./data/S1_long_fastq.gz ./data/FAST5 2.8m +shortNlong ./data/S1_R1.fastq.gz ./data/S1_R2.fastq.gz ./data/S1_long_fastq.gz ./data/FAST5 2.8m -```csv -sample,fastq_1,fastq_2 -CONTROL_REP1,AEG588A1_S1_L002_R1_001.fastq.gz,AEG588A1_S1_L002_R2_001.fastq.gz ``` Each row represents a fastq file (single-end) or a pair of fastq files (paired end). - Default: Short read assembly with Unicycler, `--kraken2db` can be any [compressed database (`.tar.gz`/`.tgz`)](https://benlangmead.github.io/aws-indexes/k2): +Default: Short read assembly with Unicycler, `--kraken2db` can be any [compressed database (`.tar.gz`/`.tgz`)](https://benlangmead.github.io/aws-indexes/k2): ```console nextflow run nf-core/bacass -profile --input samplesheet.tsv --kraken2db "https://genome-idx.s3.amazonaws.com/kraken/k2_standard_8gb_20210517.tar.gz" @@ -78,7 +81,7 @@ Each row represents a fastq file (single-end) or a pair of fastq files (paired e ```bash nextflow run nf-core/bacass \ -profile \ - --input samplesheet.csv \ + --input samplesheet.tsv \ --outdir ``` @@ -97,7 +100,7 @@ For more details about the output files and reports, please refer to the ## Credits -nf-core/bacass was initiated by [Andreas Wilm](https://github.com/andreas-wilm), originally written by [Alex Peltzer](https://github.com/apeltzer) (DSL1) and rewritten by [Daniel Straub](https://github.com/d4straub) (DSL2). +nf-core/bacass was initiated by [Andreas Wilm](https://github.com/andreas-wilm), originally written by [Alex Peltzer](https://github.com/apeltzer) (DSL1), rewritten by [Daniel Straub](https://github.com/d4straub) (DSL2) and maintained by [Daniel Valle-Millares](https://github.com/Daniel-VM). ## Contributions and Support diff --git a/assets/samplesheet.csv b/assets/samplesheet.tsv similarity index 100% rename from assets/samplesheet.csv rename to assets/samplesheet.tsv diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py deleted file mode 100755 index 4a758fe0..00000000 --- a/bin/check_samplesheet.py +++ /dev/null @@ -1,259 +0,0 @@ -#!/usr/bin/env python - - -"""Provide a command line tool to validate and transform tabular samplesheets.""" - - -import argparse -import csv -import logging -import sys -from collections import Counter -from pathlib import Path - -logger = logging.getLogger() - - -class RowChecker: - """ - Define a service that can validate and transform each given row. - - Attributes: - modified (list): A list of dicts, where each dict corresponds to a previously - validated and transformed row. The order of rows is maintained. - - """ - - VALID_FORMATS = ( - ".fq.gz", - ".fastq.gz", - ) - - def __init__( - self, - sample_col="sample", - first_col="fastq_1", - second_col="fastq_2", - single_col="single_end", - **kwargs, - ): - """ - Initialize the row checker with the expected column names. - - Args: - sample_col (str): The name of the column that contains the sample name - (default "sample"). - first_col (str): The name of the column that contains the first (or only) - FASTQ file path (default "fastq_1"). - second_col (str): The name of the column that contains the second (if any) - FASTQ file path (default "fastq_2"). - single_col (str): The name of the new column that will be inserted and - records whether the sample contains single- or paired-end sequencing - reads (default "single_end"). - - """ - super().__init__(**kwargs) - self._sample_col = sample_col - self._first_col = first_col - self._second_col = second_col - self._single_col = single_col - self._seen = set() - self.modified = [] - - def validate_and_transform(self, row): - """ - Perform all validations on the given row and insert the read pairing status. - - Args: - row (dict): A mapping from column headers (keys) to elements of that row - (values). - - """ - self._validate_sample(row) - self._validate_first(row) - self._validate_second(row) - self._validate_pair(row) - self._seen.add((row[self._sample_col], row[self._first_col])) - self.modified.append(row) - - def _validate_sample(self, row): - """Assert that the sample name exists and convert spaces to underscores.""" - if len(row[self._sample_col]) <= 0: - raise AssertionError("Sample input is required.") - # Sanitize samples slightly. - row[self._sample_col] = row[self._sample_col].replace(" ", "_") - - def _validate_first(self, row): - """Assert that the first FASTQ entry is non-empty and has the right format.""" - if len(row[self._first_col]) <= 0: - raise AssertionError("At least the first FASTQ file is required.") - self._validate_fastq_format(row[self._first_col]) - - def _validate_second(self, row): - """Assert that the second FASTQ entry has the right format if it exists.""" - if len(row[self._second_col]) > 0: - self._validate_fastq_format(row[self._second_col]) - - def _validate_pair(self, row): - """Assert that read pairs have the same file extension. Report pair status.""" - if row[self._first_col] and row[self._second_col]: - row[self._single_col] = False - first_col_suffix = Path(row[self._first_col]).suffixes[-2:] - second_col_suffix = Path(row[self._second_col]).suffixes[-2:] - if first_col_suffix != second_col_suffix: - raise AssertionError("FASTQ pairs must have the same file extensions.") - else: - row[self._single_col] = True - - def _validate_fastq_format(self, filename): - """Assert that a given filename has one of the expected FASTQ extensions.""" - if not any(filename.endswith(extension) for extension in self.VALID_FORMATS): - raise AssertionError( - f"The FASTQ file has an unrecognized extension: {filename}\n" - f"It should be one of: {', '.join(self.VALID_FORMATS)}" - ) - - def validate_unique_samples(self): - """ - Assert that the combination of sample name and FASTQ filename is unique. - - In addition to the validation, also rename all samples to have a suffix of _T{n}, where n is the - number of times the same sample exist, but with different FASTQ files, e.g., multiple runs per experiment. - - """ - if len(self._seen) != len(self.modified): - raise AssertionError("The pair of sample name and FASTQ must be unique.") - seen = Counter() - for row in self.modified: - sample = row[self._sample_col] - seen[sample] += 1 - row[self._sample_col] = f"{sample}_T{seen[sample]}" - - -def read_head(handle, num_lines=10): - """Read the specified number of lines from the current position in the file.""" - lines = [] - for idx, line in enumerate(handle): - if idx == num_lines: - break - lines.append(line) - return "".join(lines) - - -def sniff_format(handle): - """ - Detect the tabular format. - - Args: - handle (text file): A handle to a `text file`_ object. The read position is - expected to be at the beginning (index 0). - - Returns: - csv.Dialect: The detected tabular format. - - .. _text file: - https://docs.python.org/3/glossary.html#term-text-file - - """ - peek = read_head(handle) - handle.seek(0) - sniffer = csv.Sniffer() - dialect = sniffer.sniff(peek) - return dialect - - -def check_samplesheet(file_in, file_out): - """ - Check that the tabular samplesheet has the structure expected by nf-core pipelines. - - Validate the general shape of the table, expected columns, and each row. Also add - an additional column which records whether one or two FASTQ reads were found. - - Args: - file_in (pathlib.Path): The given tabular samplesheet. The format can be either - CSV, TSV, or any other format automatically recognized by ``csv.Sniffer``. - file_out (pathlib.Path): Where the validated and transformed samplesheet should - be created; always in CSV format. - - Example: - This function checks that the samplesheet follows the following structure, - see also the `viral recon samplesheet`_:: - - sample,fastq_1,fastq_2 - SAMPLE_PE,SAMPLE_PE_RUN1_1.fastq.gz,SAMPLE_PE_RUN1_2.fastq.gz - SAMPLE_PE,SAMPLE_PE_RUN2_1.fastq.gz,SAMPLE_PE_RUN2_2.fastq.gz - SAMPLE_SE,SAMPLE_SE_RUN1_1.fastq.gz, - - .. _viral recon samplesheet: - https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv - - """ - required_columns = {"sample", "fastq_1", "fastq_2"} - # See https://docs.python.org/3.9/library/csv.html#id3 to read up on `newline=""`. - with file_in.open(newline="") as in_handle: - reader = csv.DictReader(in_handle, dialect=sniff_format(in_handle)) - # Validate the existence of the expected header columns. - if not required_columns.issubset(reader.fieldnames): - req_cols = ", ".join(required_columns) - logger.critical(f"The sample sheet **must** contain these column headers: {req_cols}.") - sys.exit(1) - # Validate each row. - checker = RowChecker() - for i, row in enumerate(reader): - try: - checker.validate_and_transform(row) - except AssertionError as error: - logger.critical(f"{str(error)} On line {i + 2}.") - sys.exit(1) - checker.validate_unique_samples() - header = list(reader.fieldnames) - header.insert(1, "single_end") - # See https://docs.python.org/3.9/library/csv.html#id3 to read up on `newline=""`. - with file_out.open(mode="w", newline="") as out_handle: - writer = csv.DictWriter(out_handle, header, delimiter=",") - writer.writeheader() - for row in checker.modified: - writer.writerow(row) - - -def parse_args(argv=None): - """Define and immediately parse command line arguments.""" - parser = argparse.ArgumentParser( - description="Validate and transform a tabular samplesheet.", - epilog="Example: python check_samplesheet.py samplesheet.csv samplesheet.valid.csv", - ) - parser.add_argument( - "file_in", - metavar="FILE_IN", - type=Path, - help="Tabular input samplesheet in CSV or TSV format.", - ) - parser.add_argument( - "file_out", - metavar="FILE_OUT", - type=Path, - help="Transformed output samplesheet in CSV format.", - ) - parser.add_argument( - "-l", - "--log-level", - help="The desired log level (default WARNING).", - choices=("CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG"), - default="WARNING", - ) - return parser.parse_args(argv) - - -def main(argv=None): - """Coordinate argument parsing and program execution.""" - args = parse_args(argv) - logging.basicConfig(level=args.log_level, format="[%(levelname)s] %(message)s") - if not args.file_in.is_file(): - logger.error(f"The given input file {args.file_in} was not found!") - sys.exit(2) - args.file_out.parent.mkdir(parents=True, exist_ok=True) - check_samplesheet(args.file_in, args.file_out) - - -if __name__ == "__main__": - sys.exit(main()) diff --git a/conf/igenomes.config b/conf/igenomes.config deleted file mode 100644 index 3f114377..00000000 --- a/conf/igenomes.config +++ /dev/null @@ -1,440 +0,0 @@ -/* -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Nextflow config file for iGenomes paths -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Defines reference genomes using iGenome paths. - Can be used by any config that customises the base path using: - $params.igenomes_base / --igenomes_base ----------------------------------------------------------------------------------------- -*/ - -params { - // illumina iGenomes reference file paths - genomes { - 'GRCh37' { - fasta = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Homo_sapiens/Ensembl/GRCh37/Annotation/README.txt" - mito_name = "MT" - macs_gsize = "2.7e9" - blacklist = "${projectDir}/assets/blacklists/GRCh37-blacklist.bed" - } - 'GRCh38' { - fasta = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Homo_sapiens/NCBI/GRCh38/Annotation/Genes/genes.bed" - mito_name = "chrM" - macs_gsize = "2.7e9" - blacklist = "${projectDir}/assets/blacklists/hg38-blacklist.bed" - } - 'CHM13' { - fasta = "${params.igenomes_base}/Homo_sapiens/UCSC/CHM13/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/CHM13/Sequence/BWAIndex/" - bwamem2 = "${params.igenomes_base}/Homo_sapiens/UCSC/CHM13/Sequence/BWAmem2Index/" - gtf = "${params.igenomes_base}/Homo_sapiens/NCBI/CHM13/Annotation/Genes/genes.gtf" - gff = "ftp://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/009/914/755/GCF_009914755.1_T2T-CHM13v2.0/GCF_009914755.1_T2T-CHM13v2.0_genomic.gff.gz" - mito_name = "chrM" - } - 'GRCm38' { - fasta = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Mus_musculus/Ensembl/GRCm38/Annotation/README.txt" - mito_name = "MT" - macs_gsize = "1.87e9" - blacklist = "${projectDir}/assets/blacklists/GRCm38-blacklist.bed" - } - 'TAIR10' { - fasta = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Arabidopsis_thaliana/Ensembl/TAIR10/Annotation/README.txt" - mito_name = "Mt" - } - 'EB2' { - fasta = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Bacillus_subtilis_168/Ensembl/EB2/Annotation/README.txt" - } - 'UMD3.1' { - fasta = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Bos_taurus/Ensembl/UMD3.1/Annotation/README.txt" - mito_name = "MT" - } - 'WBcel235' { - fasta = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Caenorhabditis_elegans/Ensembl/WBcel235/Annotation/Genes/genes.bed" - mito_name = "MtDNA" - macs_gsize = "9e7" - } - 'CanFam3.1' { - fasta = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Canis_familiaris/Ensembl/CanFam3.1/Annotation/README.txt" - mito_name = "MT" - } - 'GRCz10' { - fasta = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Danio_rerio/Ensembl/GRCz10/Annotation/Genes/genes.bed" - mito_name = "MT" - } - 'BDGP6' { - fasta = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Drosophila_melanogaster/Ensembl/BDGP6/Annotation/Genes/genes.bed" - mito_name = "M" - macs_gsize = "1.2e8" - } - 'EquCab2' { - fasta = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Equus_caballus/Ensembl/EquCab2/Annotation/README.txt" - mito_name = "MT" - } - 'EB1' { - fasta = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Escherichia_coli_K_12_DH10B/Ensembl/EB1/Annotation/README.txt" - } - 'Galgal4' { - fasta = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Gallus_gallus/Ensembl/Galgal4/Annotation/Genes/genes.bed" - mito_name = "MT" - } - 'Gm01' { - fasta = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Glycine_max/Ensembl/Gm01/Annotation/README.txt" - } - 'Mmul_1' { - fasta = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Macaca_mulatta/Ensembl/Mmul_1/Annotation/README.txt" - mito_name = "MT" - } - 'IRGSP-1.0' { - fasta = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Oryza_sativa_japonica/Ensembl/IRGSP-1.0/Annotation/Genes/genes.bed" - mito_name = "Mt" - } - 'CHIMP2.1.4' { - fasta = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Pan_troglodytes/Ensembl/CHIMP2.1.4/Annotation/README.txt" - mito_name = "MT" - } - 'Rnor_5.0' { - fasta = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_5.0/Annotation/Genes/genes.bed" - mito_name = "MT" - } - 'Rnor_6.0' { - fasta = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Rattus_norvegicus/Ensembl/Rnor_6.0/Annotation/Genes/genes.bed" - mito_name = "MT" - } - 'R64-1-1' { - fasta = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Saccharomyces_cerevisiae/Ensembl/R64-1-1/Annotation/Genes/genes.bed" - mito_name = "MT" - macs_gsize = "1.2e7" - } - 'EF2' { - fasta = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Schizosaccharomyces_pombe/Ensembl/EF2/Annotation/README.txt" - mito_name = "MT" - macs_gsize = "1.21e7" - } - 'Sbi1' { - fasta = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Sorghum_bicolor/Ensembl/Sbi1/Annotation/README.txt" - } - 'Sscrofa10.2' { - fasta = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Sus_scrofa/Ensembl/Sscrofa10.2/Annotation/README.txt" - mito_name = "MT" - } - 'AGPv3' { - fasta = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Zea_mays/Ensembl/AGPv3/Annotation/Genes/genes.bed" - mito_name = "Mt" - } - 'hg38' { - fasta = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Homo_sapiens/UCSC/hg38/Annotation/Genes/genes.bed" - mito_name = "chrM" - macs_gsize = "2.7e9" - blacklist = "${projectDir}/assets/blacklists/hg38-blacklist.bed" - } - 'hg19' { - fasta = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Homo_sapiens/UCSC/hg19/Annotation/README.txt" - mito_name = "chrM" - macs_gsize = "2.7e9" - blacklist = "${projectDir}/assets/blacklists/hg19-blacklist.bed" - } - 'mm10' { - fasta = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Mus_musculus/UCSC/mm10/Annotation/README.txt" - mito_name = "chrM" - macs_gsize = "1.87e9" - blacklist = "${projectDir}/assets/blacklists/mm10-blacklist.bed" - } - 'bosTau8' { - fasta = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Bos_taurus/UCSC/bosTau8/Annotation/Genes/genes.bed" - mito_name = "chrM" - } - 'ce10' { - fasta = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Caenorhabditis_elegans/UCSC/ce10/Annotation/README.txt" - mito_name = "chrM" - macs_gsize = "9e7" - } - 'canFam3' { - fasta = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Canis_familiaris/UCSC/canFam3/Annotation/README.txt" - mito_name = "chrM" - } - 'danRer10' { - fasta = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Danio_rerio/UCSC/danRer10/Annotation/Genes/genes.bed" - mito_name = "chrM" - macs_gsize = "1.37e9" - } - 'dm6' { - fasta = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Drosophila_melanogaster/UCSC/dm6/Annotation/Genes/genes.bed" - mito_name = "chrM" - macs_gsize = "1.2e8" - } - 'equCab2' { - fasta = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Equus_caballus/UCSC/equCab2/Annotation/README.txt" - mito_name = "chrM" - } - 'galGal4' { - fasta = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Gallus_gallus/UCSC/galGal4/Annotation/README.txt" - mito_name = "chrM" - } - 'panTro4' { - fasta = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Pan_troglodytes/UCSC/panTro4/Annotation/README.txt" - mito_name = "chrM" - } - 'rn6' { - fasta = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Rattus_norvegicus/UCSC/rn6/Annotation/Genes/genes.bed" - mito_name = "chrM" - } - 'sacCer3' { - fasta = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Sequence/BismarkIndex/" - readme = "${params.igenomes_base}/Saccharomyces_cerevisiae/UCSC/sacCer3/Annotation/README.txt" - mito_name = "chrM" - macs_gsize = "1.2e7" - } - 'susScr3' { - fasta = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/WholeGenomeFasta/genome.fa" - bwa = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/BWAIndex/version0.6.0/" - bowtie2 = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/Bowtie2Index/" - star = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/STARIndex/" - bismark = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Sequence/BismarkIndex/" - gtf = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Annotation/Genes/genes.gtf" - bed12 = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Annotation/Genes/genes.bed" - readme = "${params.igenomes_base}/Sus_scrofa/UCSC/susScr3/Annotation/README.txt" - mito_name = "chrM" - } - } -} diff --git a/docs/output.md b/docs/output.md index 2f5423e1..4a6a5939 100644 --- a/docs/output.md +++ b/docs/output.md @@ -80,8 +80,8 @@ Please refer to the documentation of [NanoPlot](https://github.com/wdecoster/Nan - `QC_Longreads/NanoPlot`: Various plots in HTML and PNG format - `QC_Longreads/PycoQC` - - `{sample_id}_pycoqc.html`: QC report in HTML format - - `{sample_id}_pycoqc.json`: QC report in JSON format + - `*_pycoqc.html`: QC report in HTML format + - `*_pycoqc.json`: QC report in JSON format Example plot from Nanoplot: @@ -100,8 +100,8 @@ multiple species. If you like to visualize the report, try Output files - `Kraken2/` - - `{sample}.kraken2.report.txt`: Classification of short reads in the Kraken(1) report format. - - `{sample}_longreads.kraken2.report.txt`: Classification of long reads in the Kraken(1) report format. + - `*.kraken2.report.txt`: Classification of short reads in the Kraken(1) report format. + - `*_longreads.kraken2.report.txt`: Classification of long reads in the Kraken(1) report format. See [webpage](http://ccb.jhu.edu/software/kraken/MANUAL.html#sample-reports) for more details. @@ -120,21 +120,21 @@ Unicycler is a pipeline on its own, which at least for Illumina reads mainly act Output files - `Unicycler/` - - `{sample}.scaffolds.fa`: Final assembly in fasta format - - `{sample}.assembly.gfa`: Final assembly in Graphical Fragment Assembly (GFA) format - - `{sample}.unicycler.log`: Log file summarizing steps and intermediate results on the Unicycler execution + - `*.scaffolds.fa`: Final assembly in fasta format + - `*.assembly.gfa`: Final assembly in Graphical Fragment Assembly (GFA) format + - `*.unicycler.log`: Log file summarizing steps and intermediate results on the Unicycler execution Check out the [Unicycler documentation](https://github.com/rrwick/Unicycler) for more information on Unicycler output. - `Canu/` - - `{sample}.contigs.fasta.gz`: Final assembly in fasta format - - `{sample}.report`: Log file summarizing steps and intermediate results + - `*.contigs.fasta.gz`: Final assembly in fasta format + - `*.report`: Log file summarizing steps and intermediate results Check out the [Canu documentation](https://canu.readthedocs.io/en/latest/index.html) for more information on Canu output. - `Miniasm/` - - `{sample}.fasta.gz`: Assembly in Fasta format - - `{sample}_assembly_consensus.fasta.gz`: Consensus assembly in fasta format (polished by Racon) + - `*.fasta.gz`: Assembly in Fasta format + - `*_assembly_consensus.fasta.gz`: Consensus assembly in fasta format (polished by Racon) Check out the [Miniasm documentation](https://github.com/lh3/miniasm) for more information on Miniasm output. @@ -147,7 +147,7 @@ Long reads assemblies can be polished using [Medaka](https://github.com/nanopore
    Output files -- `Medaka/{sample_id}_polished_genome.fa` +- `Medaka/*_polished_genome.fa` - `*_polished_genome.fa`: Polished consensus assembly in fasta format - `calls_to_draft.bam`: Alignment in bam format @@ -187,16 +187,16 @@ By default, the assembly is annotated with [Prokka](https://github.com/tseemann/
    Output files -- `Prokka/{sample_id}/` - - `{sample_id}.gff`: Annotation in gff format - - `{sample_id}.txt`: Annotation in text format - - `{sample_id}.faa`: Protein sequences in fasta format +- `Prokka/{ID}/` + - `*.gff`: Annotation in gff format + - `*.txt`: Annotation in text format + - `*.faa`: Protein sequences in fasta format See [Prokka's documentation](https://github.com/tseemann/prokka#output-files) for a full description of all output files. ![Prokka annotation](images/prokka.png) -- `DFAST/{sample_id}_results/` +- `DFAST/{ID}_results/` - `genome.gff`: Annotation in gff format - `statistics.txt`: Annotation statistics in text format - `protein.faa`: Protein sequences in fasta format @@ -233,6 +233,5 @@ Results generated by MultiQC collate pipeline QC from supported tools e.g. FastQ - `pipeline_info/` - Reports generated by Nextflow: `execution_report.html`, `execution_timeline.html`, `execution_trace.txt` and `pipeline_dag.dot`/`pipeline_dag.svg`. - Reports generated by the pipeline: `pipeline_report.html`, `pipeline_report.txt` and `software_versions.yml`. The `pipeline_report*` files will only be present if the `--email` / `--email_on_fail` parameter's are used when running the pipeline. - - Reformatted samplesheet files used as input to the pipeline: `samplesheet.valid.csv`.
    diff --git a/docs/usage.md b/docs/usage.md index e35d36dd..c9c898ca 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -36,14 +36,14 @@ shortNlong ./data/S1_R1.fastq.gz ./data/S1_R2.fastq.gz ./data/S1_long_f | `Fast5` | Full path to a folder containing Fast5 file(s) for ONT long reads. `NA` indicates that there are no Fast5 files available. | | `GenomeSize` | Expected genome size. For example, `2.8m` means 2.8 million basepairs genome size expected. This is only used by Canu assembler. `NA` indicates that this value is unknown. | -An [example samplesheet](../assets/samplesheet.csv) has been provided with the pipeline. +An [example samplesheet](../assets/samplesheet.tsv) has been provided with the pipeline. ## Running the pipeline The typical command for running the pipeline is as follows: ```console -nextflow run nf-core/bacass --input samplesheet.csv -profile docker --skip_kraken2 +nextflow run nf-core/bacass --input samplesheet.tsv -profile docker --skip_kraken2 ``` This will launch the pipeline with the `docker` configuration profile. See below for more information about profiles. @@ -72,9 +72,8 @@ nextflow run nf-core/bacass -profile docker -params-file params.yaml with `params.yaml` containing: ```yaml -input: './samplesheet.csv' +input: './samplesheet.tsv' outdir: './results/' -genome: 'GRCh37' <...> ``` diff --git a/modules/local/pycoqc.nf b/modules/local/pycoqc.nf index 42030bf3..c3edb434 100644 --- a/modules/local/pycoqc.nf +++ b/modules/local/pycoqc.nf @@ -1,5 +1,4 @@ process PYCOQC { - tag "$fast5" label 'process_medium' conda "bioconda::pycoqc=2.5.2" @@ -23,7 +22,7 @@ process PYCOQC { def prefix = task.ext.prefix ?: "${meta.id}" def run_summary = file("${fast5}/sequencing_summary.txt").exists() ? "cp ${fast5}/sequencing_summary.txt ./sequencing_summary.txt" : "Fast5_to_seq_summary -f $fast5 -t ${task.cpus} -s './sequencing_summary.txt' --verbose_level 2" def barcode_me = file("${fast5}/barcoding_sequencing.txt").exists() ? "-b ${fast5}/barcoding_sequencing.txt" : '' - + """ $run_summary @@ -39,4 +38,4 @@ process PYCOQC { pycoqc: \$(pycoQC --version 2>&1 | sed 's/^.*pycoQC v//; s/ .*\$//') END_VERSIONS """ -} \ No newline at end of file +} diff --git a/modules/local/samplesheet_check.nf b/modules/local/samplesheet_check.nf deleted file mode 100644 index f2b65abc..00000000 --- a/modules/local/samplesheet_check.nf +++ /dev/null @@ -1,31 +0,0 @@ -process SAMPLESHEET_CHECK { - tag "$samplesheet" - label 'process_single' - - conda "conda-forge::python=3.8.3" - container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/python:3.8.3' : - 'biocontainers/python:3.8.3' }" - - input: - path samplesheet - - output: - path '*.csv' , emit: csv - path "versions.yml", emit: versions - - when: - task.ext.when == null || task.ext.when - - script: // This script is bundled with the pipeline, in nf-core/bacass/bin/ - """ - check_samplesheet.py \\ - $samplesheet \\ - samplesheet.valid.csv - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - python: \$(python --version | sed 's/Python //g') - END_VERSIONS - """ -} diff --git a/nextflow.config b/nextflow.config index cc5c6a33..10e4431a 100644 --- a/nextflow.config +++ b/nextflow.config @@ -10,81 +10,79 @@ params { // Input options - input = null + input = null // QC and trimming options - save_trimmed_fail = false - save_merged = false + save_trimmed_fail = false + save_merged = false // Contamination_screening - kraken2db = "" + kraken2db = "" // Assembly parameters - assembler = 'unicycler' //allowed are unicycler, canu, miniasm - assembly_type = 'short' //allowed are short, long, hybrid (hybrid works only with Unicycler) - unicycler_args = "" - canu_mode = '-nanopore' // allowed modes: ["-pacbio", "-nanopore", "-pacbio-hifi"] - canu_args = '' //Default no extra options, can be adjusted by the user + assembler = 'unicycler' //allowed are unicycler, canu, miniasm + assembly_type = 'short' //allowed are short, long, hybrid (hybrid works only with Unicycler) + unicycler_args = "" + canu_mode = '-nanopore' // allowed modes: ["-pacbio", "-nanopore", "-pacbio-hifi"] + canu_args = '' //Default no extra options, can be adjusted by the user // Assembly polishing - polish_method = 'medaka' + polish_method = 'medaka' // Annotation - annotation_tool = 'prokka' - prokka_args = "" - dfast_config = "$projectDir/assets/test_config_dfast.py" + annotation_tool = 'prokka' + prokka_args = "" + dfast_config = "$projectDir/assets/test_config_dfast.py" // Skipping options - skip_fastqc = false - skip_fastp = false - skip_kraken2 = false - skip_pycoqc = false - skip_annotation = false - skip_polish = false - skip_multiqc = false + skip_fastqc = false + skip_fastp = false + skip_kraken2 = false + skip_pycoqc = false + skip_annotation = false + skip_polish = false + skip_multiqc = false // MultiQC options - multiqc_config = null - multiqc_title = null - multiqc_logo = null - max_multiqc_email_size = '25.MB' - multiqc_methods_description = null + multiqc_config = null + multiqc_title = null + multiqc_logo = null + max_multiqc_email_size = '25.MB' + multiqc_methods_description = null // Boilerplate options - outdir = null - publish_dir_mode = 'copy' - email = null - email_on_fail = null - plaintext_email = false - monochrome_logs = false - hook_url = null - help = false - validate_params = true - schema_ignore_params = 'modules,igenomes_base' - version = false + outdir = null + publish_dir_mode = 'copy' + email = null + email_on_fail = null + plaintext_email = false + monochrome_logs = false + hook_url = null + help = false + validate_params = true + schema_ignore_params = 'modules,igenomes_base' + version = false // Config options - config_profile_name = null - config_profile_description = null - custom_config_version = 'master' - custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}" - config_profile_contact = null - config_profile_url = null - + config_profile_name = null + config_profile_description = null + custom_config_version = 'master' + custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}" + config_profile_contact = null + config_profile_url = null // Max resource options // Defaults only, expecting to be overwritten - max_memory = '128.GB' - max_cpus = 16 - max_time = '240.h' + max_memory = '128.GB' + max_cpus = 16 + max_time = '240.h' // Schema validation default options - validationFailUnrecognisedParams = false - validationLenientMode = false - validationSchemaIgnoreParams = 'genomes' - validationShowHiddenParams = false - validate_params = true - + validationFailUnrecognisedParams= false + validationLenientMode = false + validationSchemaIgnoreParams = 'genomes' + validationShowHiddenParams = false + validate_params = true } // Load base.config by default for all pipelines @@ -140,7 +138,7 @@ profiles { apptainer.enabled = false } arm { - docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64' + docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64' } singularity { singularity.enabled = true @@ -226,7 +224,7 @@ env { } // Capture exit codes from upstream processes when piping -process.shell = ['/bin/bash', '-euo', 'pipefail'] +process.shell = ['/bin/bash', '-euo', 'pipefail'] def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss') timeline { @@ -254,7 +252,7 @@ manifest { mainScript = 'main.nf' nextflowVersion = '!>=23.04.0' version = '2.1.0dev' - doi = '' + doi = '10.5281/zenodo.2669428' } // Load modules.config for DSL2 module specific options diff --git a/workflows/bacass.nf b/workflows/bacass.nf index 613ea0f6..14ad29c4 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -57,13 +57,12 @@ ch_multiqc_custom_methods_description = params.multiqc_methods_description ? fil // // MODULE: Local to the pipeline // -include { NANOPLOT_CUSTOM } from '../modules/local/nanoplot_custom' include { PYCOQC } from '../modules/local/pycoqc' include { UNICYCLER } from '../modules/local/unicycler' include { NANOPOLISH } from '../modules/local/nanopolish' include { MEDAKA } from '../modules/local/medaka' include { KRAKEN2_DB_PREPARATION } from '../modules/local/kraken2_db_preparation' -include { DFAST } from '../modules/local/dfast' +include { DFAST } from '../modules/local/dfast' // // SUBWORKFLOW: Consisting of a mix of local and nf-core/modules @@ -78,7 +77,8 @@ include { INPUT_CHECK } from '../subworkflows/local/input_check' // // MODULE: Installed directly from nf-core/modules -// +// +include { NANOPLOT } from '../modules/nf-core/nanoplot/main' include { PORECHOP_PORECHOP } from '../modules/nf-core/porechop/porechop/main' include { CANU } from '../modules/nf-core/canu/main' include { MINIMAP2_ALIGN } from '../modules/nf-core/minimap2/align/main' @@ -122,7 +122,7 @@ workflow BACASS { ) // TODO: OPTIONAL, you can use nf-validation plugin to create an input channel from the samplesheet with Channel.fromSamplesheet("input") // See the documentation https://nextflow-io.github.io/nf-validation/samplesheets/fromSamplesheet/ - // ! There is currently no tooling to help you write a sample sheet schema + // ! There is currently no tooling to help you write a sample sheet schema // // SUBWORKFLOW: Short reads QC and trim adapters @@ -140,10 +140,10 @@ workflow BACASS { // // MODULE: Nanoplot, quality check for nanopore reads and Quality/Length Plots // - NANOPLOT_CUSTOM ( + NANOPLOT ( INPUT_CHECK.out.longreads ) - ch_versions = ch_versions.mix(NANOPLOT_CUSTOM.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(NANOPLOT.out.versions.first().ifEmpty(null)) // // MODULE: PYCOQC, quality check for nanopore reads and Quality/Length Plots @@ -253,7 +253,7 @@ workflow BACASS { MINIASM.out.assembly.map { meta, assembly -> assembly }, false, false, - false + false ) ch_versions = ch_versions.mix(MINIMAP2_CONSENSUS.out.versions.first().ifEmpty(null)) @@ -277,13 +277,13 @@ workflow BACASS { ch_for_assembly .join( ch_assembly ) .set { ch_for_polish } - + MINIMAP2_POLISH ( ch_for_polish.map { meta, sr, lr, fasta -> tuple(meta, lr) }, ch_for_polish.map { meta, sr, lr, fasta -> fasta }, true, false, - false + false ) ch_versions = ch_versions.mix(MINIMAP2_POLISH.out.versions.first().ifEmpty(null)) @@ -313,11 +313,11 @@ workflow BACASS { .join( ch_assembly ) .map { meta, sr, lr, assembly -> tuple(meta, lr, assembly) } .set { ch_for_medaka } - + MEDAKA ( ch_for_medaka.dump(tag: 'into_medaka') ) ch_versions = ch_versions.mix(MEDAKA.out.versions.first().ifEmpty(null)) } - + // // MODULE: Kraken2, QC for sample purity // From 3abc9ed4f2f3dd1ee05b81fda2cc0146f9bf20e9 Mon Sep 17 00:00:00 2001 From: Daniel-VM Date: Tue, 19 Sep 2023 17:14:07 +0200 Subject: [PATCH 20/21] fix prettier after adding code-reviewer suggestions --- CHANGELOG.md | 45 ++++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e70f466..734a2e91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,35 +28,34 @@ This version merges the nf-core template update v2.9. It also updates modules or - [#61](https://github.com/nf-core/bacass/issues/61) - Update local/modules to nf-core/modules plus version update. -| Tool | Previous version | New version | -| ------ | ---------------- | ----------- | -| Canu | 2.1.1 | 2.2 | -| Minimap2 | 2.21 | 2.2 | -| Miniasm | 0.3 | - | -| Racon | 1.4.20-1 | - | +| Tool | Previous version | New version | +| -------- | ---------------- | ----------- | +| Canu | 2.1.1 | 2.2 | +| Minimap2 | 2.21 | 2.2 | +| Miniasm | 0.3 | - | +| Racon | 1.4.20-1 | - | - Update already nf-core modules -| Tool | Previous version | New version | -| ------ | ---------------- | ----------- | -| Fastqc | 0.11.9 | - | -| Samtools | 1.13 | 2.1.2 | -| Kraken2 | 2.1.1 | 2.1.2 | -| Quast | 5.0.2 | 5.2.0 | -| Prokka | 1.14.6 | - | -| Multiqc | 1.10.1 | 1.15 | +| Tool | Previous version | New version | +| -------- | ---------------- | ----------- | +| Fastqc | 0.11.9 | - | +| Samtools | 1.13 | 2.1.2 | +| Kraken2 | 2.1.1 | 2.1.2 | +| Quast | 5.0.2 | 5.2.0 | +| Prokka | 1.14.6 | - | +| Multiqc | 1.10.1 | 1.15 | - Refactor `local/modules` making them follow nf-core v2.9 structure/fashion. -| Tool | Previous version | New version | -| ------ | ---------------- | ----------- | -| Dfast | 1.2.14 | - | -| Medaka | 1.4.3-0 | - | -| Nanoplot | 1.38.0 | 1.41.6 | - | Nanopolish | 0.13.2-5 | 0.14.0 | - | Pycoqc | 2.5.2 | - | - | Unicycler | 0.4.8 | - | - +| Tool | Previous version | New version | +| ---------- | ---------------- | ----------- | +| Dfast | 1.2.14 | - | +| Medaka | 1.4.3-0 | - | +| Nanoplot | 1.38.0 | 1.41.6 | +| Nanopolish | 0.13.2-5 | 0.14.0 | +| Pycoqc | 2.5.2 | - | +| Unicycler | 0.4.8 | - | ### `Deprecated` From 5c6fbeed4d25f72f812ea2c5c952636ead7b73c0 Mon Sep 17 00:00:00 2001 From: Dani VM Date: Tue, 19 Sep 2023 22:47:33 +0200 Subject: [PATCH 21/21] removed lines causing warnings --- workflows/bacass.nf | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/workflows/bacass.nf b/workflows/bacass.nf index 14ad29c4..5b6c5eb0 100644 --- a/workflows/bacass.nf +++ b/workflows/bacass.nf @@ -143,7 +143,7 @@ workflow BACASS { NANOPLOT ( INPUT_CHECK.out.longreads ) - ch_versions = ch_versions.mix(NANOPLOT.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(NANOPLOT.out.versions.ifEmpty(null)) // // MODULE: PYCOQC, quality check for nanopore reads and Quality/Length Plots @@ -153,7 +153,7 @@ workflow BACASS { PYCOQC ( INPUT_CHECK.out.fast5.dump(tag: 'fast5') ) - versions = ch_versions.mix(PYCOQC.out.versions.first().ifEmpty(null)) + versions = ch_versions.mix(PYCOQC.out.versions.ifEmpty(null)) } // @@ -163,7 +163,7 @@ workflow BACASS { PORECHOP_PORECHOP ( INPUT_CHECK.out.longreads.dump(tag: 'longreads') ) - ch_versions = ch_versions.mix( PORECHOP_PORECHOP.out.versions.first().ifEmpty(null) ) + ch_versions = ch_versions.mix( PORECHOP_PORECHOP.out.versions.ifEmpty(null) ) } // @@ -223,7 +223,7 @@ workflow BACASS { ch_for_assembly.map { meta, reads, lr -> meta.genome_size } ) ch_assembly = ch_assembly.mix( CANU.out.assembly.dump(tag: 'canu') ) - ch_versions = ch_versions.mix(CANU.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(CANU.out.versions.ifEmpty(null)) } // @@ -236,7 +236,7 @@ workflow BACASS { false, false ) - ch_versions = ch_versions.mix(MINIMAP2_ALIGN.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(MINIMAP2_ALIGN.out.versions.ifEmpty(null)) ch_for_assembly .join(MINIMAP2_ALIGN.out.paf) @@ -246,7 +246,7 @@ workflow BACASS { MINIASM ( ch_for_miniasm ) - ch_versions = ch_versions.mix(MINIASM.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(MINIASM.out.versions.ifEmpty(null)) MINIMAP2_CONSENSUS ( ch_for_assembly.map{ meta,sr,lr -> tuple(meta,lr) }, @@ -255,7 +255,7 @@ workflow BACASS { false, false ) - ch_versions = ch_versions.mix(MINIMAP2_CONSENSUS.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(MINIMAP2_CONSENSUS.out.versions.ifEmpty(null)) ch_for_assembly .join(MINIASM.out.assembly) @@ -267,7 +267,7 @@ workflow BACASS { ch_for_racon ) ch_assembly = ch_assembly.mix( RACON.out.improved_assembly.dump(tag: 'miniasm') ) - ch_versions = ch_versions.mix(RACON.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(RACON.out.versions.ifEmpty(null)) } // @@ -285,12 +285,12 @@ workflow BACASS { false, false ) - ch_versions = ch_versions.mix(MINIMAP2_POLISH.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(MINIMAP2_POLISH.out.versions.ifEmpty(null)) SAMTOOLS_INDEX ( MINIMAP2_POLISH.out.bam.dump(tag: 'samtools_sort') ) - ch_versions = ch_versions.mix(SAMTOOLS_INDEX.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(SAMTOOLS_INDEX.out.versions.ifEmpty(null)) ch_for_polish // tuple val(meta), val(reads), file(longreads), file(assembly) .join( MINIMAP2_POLISH.out.bam ) // tuple val(meta), file(bam) @@ -302,7 +302,7 @@ workflow BACASS { NANOPOLISH ( ch_for_nanopolish.dump(tag: 'into_nanopolish') ) - ch_versions = ch_versions.mix(NANOPOLISH.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(NANOPOLISH.out.versions.ifEmpty(null)) } // @@ -315,7 +315,7 @@ workflow BACASS { .set { ch_for_medaka } MEDAKA ( ch_for_medaka.dump(tag: 'into_medaka') ) - ch_versions = ch_versions.mix(MEDAKA.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(MEDAKA.out.versions.ifEmpty(null)) } // @@ -331,7 +331,7 @@ workflow BACASS { false, false ) - ch_versions = ch_versions.mix(KRAKEN2.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(KRAKEN2.out.versions.ifEmpty(null)) KRAKEN2_LONG ( ch_for_kraken2_long .map { meta, reads -> @@ -345,7 +345,7 @@ workflow BACASS { false, false ) - ch_versions = ch_versions.mix(KRAKEN2_LONG.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(KRAKEN2_LONG.out.versions.ifEmpty(null)) } // @@ -361,7 +361,7 @@ workflow BACASS { [[:],[]], [[:],[]] ) - ch_versions = ch_versions.mix(QUAST.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(QUAST.out.versions.ifEmpty(null)) // // MODULE: PROKKA, gene annotation @@ -369,14 +369,14 @@ workflow BACASS { if ( !params.skip_annotation && params.annotation_tool == 'prokka' ) { GUNZIP ( ch_assembly ) ch_to_prokka = GUNZIP.out.gunzip - ch_versions = ch_versions.mix(GUNZIP.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(GUNZIP.out.versions.ifEmpty(null)) PROKKA ( ch_to_prokka, [], [] ) - ch_versions = ch_versions.mix(PROKKA.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(PROKKA.out.versions.ifEmpty(null)) } // @@ -388,7 +388,7 @@ workflow BACASS { ch_assembly, Channel.value(params.dfast_config ? file(params.dfast_config) : "") ) - ch_versions = ch_versions.mix(DFAST.out.versions.first().ifEmpty(null)) + ch_versions = ch_versions.mix(DFAST.out.versions.ifEmpty(null)) } //