This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
forked from nextflow-io/nf-schema
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from nextflow-io/prepare-for-deprecation
Prepare for deprecation of nf-validation
- Loading branch information
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |