Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #170 from nextflow-io/prepare-for-deprecation
Browse files Browse the repository at this point in the history
Prepare for deprecation of nf-validation
  • Loading branch information
ewels committed Apr 22, 2024
2 parents 4bc4095 + 53fd1bf commit 8885451
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# ![nf-validation](docs/images/nf-validation.svg)

<!-- prettier-ignore -->
> [!IMPORTANT]
> **`nf-validation` has now been renamed to `nf-schema`. The `nf-validation` plugin will not receive any future updates.**
> **Please update your pipelines to use [`nf-schema`](https://github.com/nextflow-io/nf-schema) instead.**
>
> This change was necessary to prevent older versions of `nf-core` pipelines from with unpinned plugin references from breaking when updating to the latest version of `nf-validation`.
> **Please pin the version of `nf-schema` in your pipeline's `nextflow.config` file:**
> ```nextflow
> plugins { id '[email protected]' }
> ```
## 📚 Docs 👉🏻 <https://nextflow-io.github.io/nf-validation>

**A Nextflow plugin to work with validation of pipeline parameters and sample sheets.**
Expand Down
12 changes: 11 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,14 @@ description: Nextflow plugin for sample sheet validation

==}

--8<-- "README.md:6:"
!!! warning "`nf-validation` has now been renamed to `nf-schema`."

**`nf-validation` has now been renamed to `nf-schema`. The `nf-validation` plugin will not receive any future updates.**
**Please update your pipelines to use [`nf-schema`](https://github.com/nextflow-io/nf-schema) instead.**
This change was necessary to prevent older versions of `nf-core` pipelines from with unpinned plugin references from breaking when updating to the latest version of `nf-validation`.
**Please pin the version of `nf-schema` in your pipeline's `nextflow.config` file:**
```nextflow
plugins { id '[email protected]' }
```

--8<-- "README.md:18:"
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ nav:

theme:
name: material
custom_dir: overrides
icon:
logo: octicons/checklist-16
repo: fontawesome/brands/github
Expand Down
8 changes: 8 additions & 0 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% extends "base.html" %}

{% block announce %}
<div style="text-align: center;">
<strong>nf-validation has been deprecated.</strong>
Please use <a href="https://nextflow-io.github.io/nf-schema/latest/">nf-schema</a> instead.
</div>
{% endblock %}

0 comments on commit 8885451

Please sign in to comment.