-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema_example.yaml
84 lines (84 loc) · 1.79 KB
/
schema_example.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
78
79
80
81
82
83
84
---
fusion_callers:
type: 'List'
required: true
help: 'List of fusion callers for calling'
default:
- arriba
- star-fusion
- fusioncatcher
choices:
- arriba
- star-fusion
- fusioncatcher
reference_genome_version:
type: 'String'
required: true
help: 'Version of reference genome for processing'
default: 'GRCh38'
choices:
- hg19
- GRCh37
- hg38
- GRCh38
- mm10
- GRCm38
fusioncatcher_reference_dir:
type: 'Path'
mode: 'r'
required: false
help: 'Absolute path to reference directory for fusioncatcher'
starfusion_reference_dir:
type: 'Path'
mode: 'r'
required: false
help: 'Absolute path to reference directory for starfusion'
arriba_star_index_dir:
type: 'Path'
mode: 'r'
required: false
help: 'Absolute path to index directory for arriba'
arriba_assembly_fasta:
type: 'Path'
mode: 'r'
required: false
help: 'Absolute path to assembly fasta for arriba'
arriba_annotation_gtf:
type: 'Path'
mode: 'r'
required: false
help: 'Absolute path to annotation GTF for arriba'
output_dir:
type: 'Path'
mode: 'w'
required: true
help: 'Absolute path to output directory'
sample_id:
type: 'String'
required: true
help: 'Sample identifier'
paired_end:
type: 'Bool'
required: true
help: 'Indicator of whether sample is paired end or not'
default: 'true'
input:
type: 'InputNamespace' # Custom type
required: true
help: 'Input samples'
elements:
FASTQ:
type: 'ListFASTQPairs' # Custom type
required: true
help: 'Input FASTQs'
elements:
R1:
type: 'Path'
mode: 'r'
required: true
help: 'Absolute path to R1 FASTQ'
R2:
type: 'Path'
mode: 'r'
required: false
help: 'Absolute path to R2 FASTQ'