Skip to content

Commit 85ca86e

Browse files
fix: update JSON schemas to 2020-12 (#438)
1 parent b275fef commit 85ca86e

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

workflow/schemas/config.schema.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: "http://json-schema.org/draft-07/schema#"
1+
$schema: "https://json-schema.org/draft/2020-12/schema"
22

33
description: snakemake configuration file
44

@@ -31,7 +31,7 @@ definitions:
3131
properties:
3232
varlociraptor:
3333
type: array
34-
items:
34+
items:
3535
type: string
3636
filter:
3737
anyOf:
@@ -93,7 +93,7 @@ properties:
9393
trimming:
9494
type: object
9595
properties:
96-
activate:
96+
activate:
9797
type: boolean
9898
primers_fq1:
9999
type: string
@@ -145,7 +145,7 @@ properties:
145145
type: string
146146
events:
147147
type: array
148-
items:
148+
items:
149149
type: string
150150
required:
151151
- activate
@@ -164,7 +164,7 @@ properties:
164164
type: boolean
165165
annotation_fields:
166166
type: array
167-
items:
167+
items:
168168
anyOf:
169169
- type: string
170170
- type: object
@@ -224,7 +224,7 @@ properties:
224224
type: boolean
225225
mode:
226226
type: string
227-
enum:
227+
enum:
228228
- local-smart
229229
- local-strict
230230
- global-smart
@@ -240,7 +240,7 @@ properties:
240240
- scenario
241241
- filter
242242
- fdr-control
243-
243+
244244
remove_duplicates:
245245
type: object
246246
properties:
@@ -266,7 +266,7 @@ properties:
266266
type: boolean
267267
datasources:
268268
type: array
269-
items:
269+
items:
270270
type: string
271271
vep:
272272
properties:

workflow/schemas/primers.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: "http://json-schema.org/draft-04/schema#"
1+
$schema: "https://json-schema.org/draft/2020-12/schema"
22
description: row of the primer_panels.tsv, representing a primer panel, i.e. single-end or paired-end data
33
type: object
44
properties:

workflow/schemas/samples.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ required:
6565
- calling
6666

6767
dependentRequired:
68-
umi_read: ["umi_len"]
68+
umi_read: ["umi_len"]

workflow/schemas/units.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: "http://json-schema.org/draft-04/schema#"
1+
$schema: "https://json-schema.org/draft/2020-12/schema"
22
description: row of the units.tsv, representing a sequencing unit, i.e. single-end or paired-end data
33
type: object
44
properties:

0 commit comments

Comments
 (0)