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

Prepare for deprecation of nf-validation #170

Merged
merged 5 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 %}
Loading