-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
33 lines (33 loc) · 1.63 KB
/
Copy pathutils.py
File metadata and controls
33 lines (33 loc) · 1.63 KB
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
default_columns = [{
"name": "Source name", "type": "", "mandatory": True
},
{
"name": "Organism", "type": "Characteristics", "mandatory": True
}, {
"name": "Tissue", "type": "Characteristics", "mandatory": True
}, {
"name": "Disease", "type": "Characteristics", "mandatory": True
}, {
"name": "Cell type", "type": "Characteristics", "mandatory": True
}, {
"name": "Biological replicate", "type": "Characteristics", "mandatory": True
},{
"name": "Material type", "type": "", "mandatory": True
},
{
"name": "Assay name", "type": "", "mandatory": True
}, {
"name": "Technology type", "type": "", "mandatory": True
}, {
"name": "Technical replicate", "type": "Comment", "mandatory": True
},
{"name": "Label", "type": "Comment", "mandatory": True},
{"name": "Fraction identifier", "type": "Comment", "mandatory": True},
{"name": "Instrument", "type": "Comment", "mandatory": True},
{"name": "Data file", "type": "Comment", "mandatory": True},
{"name": "Cleavage agent details", "type": "Comment", "mandatory": True},
{"name": "Modification parameters", "type": "Comment", "mandatory": True},
{"name": "Dissociation method", "type": "Comment", "mandatory": True},
{"name": "Precursor mass tolerance", "type": "Comment", "mandatory": True},
{"name": "Fragment mass tolerance", "type": "Comment", "mandatory": True},
]