Skip to content

Commit

Permalink
changed schema
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Oct 17, 2024
1 parent a9fa4fd commit bc6c038
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/biocorecrg/exorthist/master/nextflow_schema.json",
"title": "ExOrthist pipeline parameters",
"description": "Schema for the parameters of your ExOrthist pipeline",
"type": "object",
"definitions": {
"$defs": {
"input_output_options": {
"title": "Input/Output Options",
"type": "object",
Expand Down Expand Up @@ -113,16 +113,16 @@
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
"$ref": "#/$defs/input_output_options"
},
{
"$ref": "#/definitions/analysis_parameters"
"$ref": "#/$defs/analysis_parameters"
},
{
"$ref": "#/definitions/additional_data"
"$ref": "#/$defs/additional_data"
},
{
"$ref": "#/definitions/notification_options"
"$ref": "#/$defs/notification_options"
}
]
}

0 comments on commit bc6c038

Please sign in to comment.