This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpep_schema.yaml
54 lines (53 loc) · 1.71 KB
/
pep_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
description: bedstat PEP schema
properties:
samples:
type: array
items:
type: object
properties:
sample_name:
type: string
description: "name of the sample, which is the name of the output BED file"
input_file_path:
type: string
description: "absolute path the file to convert"
output_file_path:
type: string
description: "absolute path the file to the output BED file (derived attribute)"
genome:
type: string
description: "organism genome code"
enum: ["hg18", "hg19", "hg38", "mm9", "mm10"]
narrowpeak:
type: integer
minimum: 0
maximum: 1
description: "binary number indicating whether the regions are narrow (transcription factor implies narrow, histone mark implies broad peaks)"
format:
type: string
description: "file format"
enum: ["bigWig", "bigBed", "bed", "wig", "bedGraph"]
cell_type:
type: string
description: "cell type code"
antibody:
type: string
description: "antibody used if ChIP-seq experiment"
description:
type: string
description: "freeform description of the sample"
exp_protocol:
type: string
description: "type of the experiment the file was generated in"
data_source:
type: string
description: "source of the sample, preferably a GSE* code"
treatment:
type: string
description: "freeform description of the sample treatment"
required:
- output_file_path
- genome
- sample_name
required:
- samples