1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
$schema: "http://json-schema.org/draft-06/schema#"

description: an entry in the sample sheet
properties:
  sample:
    type: string
    description: sample name/identifier
  condition:
    type: string
    description: sample condition that will be compared during differential expression analysis (e.g. a treatment, a tissue time, a disease)

required:
  - sample
  - condition