-
Notifications
You must be signed in to change notification settings - Fork 153
Update changelog with JSON schema improvements #459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
|
assets/schema_input.json
Outdated
"anyOf": [ | ||
{ | ||
"type": "string", | ||
"format": "file-path", | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$" | ||
}, | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this anyOf section and add the keywords from the first section to the root of the fastq_2
parameter
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, well done! Here are some small comments!
Thank you for all the comments! I will review everything and address them in the following days (weekend, April 5-6). |
Co-authored-by: Nicolas Vannieuwkerke <101190534+nvnieuwk@users.noreply.github.com>
Copy the master branch only
)dev
branch and sync the upstream changes (Sync fork
->Update branch
)json-schema-improvements
with thedev
branch as base in the forkjson-schema-improvements
branch of the fork either locally (git clone
) or online (via Github Codespaces, GitPod...)nextflow_schema.json
file"$schema"
is"https://json-schema.org/draft/2020-12/schema"
. The pipeline should be updated to nf-schema if this is not the case. See the migration guide on how to do thisassets/schema_input.json
nextflow run main.nf -profile test,docker --outdir results -stub
to check for any failures in validation with the basic test setupdev
branch of the nf-core repositoryReady to review
(PR: )Done