-
Notifications
You must be signed in to change notification settings - Fork 4
/
peptide.avsc
47 lines (47 loc) · 1.43 KB
/
peptide.avsc
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
{
"name": "peptide",
"type": "record",
"fields": [
{"name": "sequence", "type": "string", "doc": "The peptide’s sequence corresponding to the PSM"},
{"name": "peptidoform", "type": "string", "doc": "Peptide sequence with modifications: Read the specification for more details"},
{"name": "modifications", "type": ["null",
{
"type": "array",
"items": {
"type": "struct",
"fields": [
{ "name": "modification_name", "type": "string" },
{
"name": "fields",
"type": {
"type": "array",
"items": {
"type": "struct",
"fields": [
{ "name": "position", "type": "int32" },
{ "name": "localization_probability", "type": "float32" },
]
}
}
}
]
}
}],
"doc": "List of modifications as string array, easy for search and filter"
},
{"name": "best_id_score", "type": ["null", {
"type": "array",
"items": {
"type": "struct",
"fields": [
{"name": "score_name", "type": "string"},
{"name": "score_value", "type": "float32"}
],
}
}],
"doc": "A named score type and value representing an identification's measure of confidence or input feature"
},
{"name": "sample_accession", "type": "string", "doc": "The sample accession in the SDRF, which column is called source name"},
{"name": "abundance", "type": "float32", "doc": "The peptide abundance in the given sample accession"},
]
}