-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-schema.yaml
77 lines (53 loc) · 1004 Bytes
/
config-schema.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
$schema: "http://json-schema.org/draft-06/schema#"
description: snakemake configuration file
type: object
properties:
# Variables related to the alignment of raw reads.
do_alignment:
type: boolean
run_id:
type: string
species:
type: string
build_transcriptome:
type: boolean
fasta_file:
type: string
gtf_file:
type: string
raw_reads:
type: string
# Variables related to the analysis of gene count matrix.
do_analysis:
type: boolean
anal_id:
type: string
species_1:
type: string
gene_mtx_1:
type: string
integration:
type: boolean
species_2:
type: string
gene_mtx_2:
type: string
dependentRequired:
do_alignment:
- run_id
- species
- raw_reads
do_analysis:
- anal_id
- species_1
- gene_mtx_1
- integration
if:
properties:
integration: true
required:
- integration
then:
required:
- fasta_file
- gtf_file