-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingest_data.py
165 lines (160 loc) · 4.3 KB
/
ingest_data.py
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/usr/bin/env python3
"""
Contains lists and dictionaries used in Ingest_Sheet_Maker class
:role_dict: default rules for assigning roles to files
:x_extension_dict: rules for identifying x by file extension
:x_parse_dict: rules for identifying x by filename patterns
:header_names: header names used in ingest csv file
:pattern_dict: patterns used to identify sides, regions, etc.
"""
# Contains default rules for assigning roles to files.
role_dict = {
"framemd5": {
"identifiers": [".framemd5"],
"type": "extension",
"role": "S",
"label": "framemd5 file",
"file_builder": "_supplementary_",
},
"metadata": {
"identifiers": [".xml", ".json", ".pdf"],
"type": "extension",
"role": "S",
"label": "technical metadata file",
"file_builder": "_supplementary_",
},
"qctools": {
"identifiers": [".xml.gz", ".qctools.mkv"],
"type": "extension",
"role": "S",
"label": "QCTools report",
"file_builder": "_supplementary_",
},
"logfile": {
"identifiers": [".log"],
"type": "extension",
"role": "S",
"label": "log file",
"file_builder": "_supplementary_",
},
"spectrogram": {
"identifiers": ["spectrogram"],
"type": "pattern",
"role": "S",
"label": "spectrogram file",
"file_builder": "_supplementary_",
},
"dpx_checksum": {
"identifiers": ["dpx.txt"],
"type": "extension",
"role": "S",
"label": "original DPX checksums",
"file_builder": "_supplementary_",
},
"access": {
"identifiers": [
"-a.",
"_a.",
"-am.",
"_am.",
"_am_",
"-am-",
"-am_",
"_access",
],
"type": "pattern",
"role": "A",
"label": None,
"file_builder": "_access_",
},
"preservation": {
"identifiers": [
"-p.",
"_p.",
"-pm.",
"_pm",
"_pm_",
"-pm-",
"-pm_",
"_preservation",
],
"type": "pattern",
"role": "P",
"label": None,
"file_builder": "_preservation_",
},
}
x_extension_dict = {
"auxiliary": {
"identifiers": [".jpg", ".JPG", ".tif"],
"type": "extension",
"role": "X",
"label": "image",
"file_builder": "_auxiliary_",
}
}
# Contains rules for assigning x files based on filename patterns.
x_parse_dict = {
"front": {
"identifiers": ["front", "Front"],
"type": "pattern",
"role": "X",
"label": "asset front",
"file_builder": "_auxiliary_",
},
"back": {
"identifiers": ["back", "Back"],
"type": "pattern",
"role": "X",
"label": "asset back",
"file_builder": "_auxiliary_",
},
"asset": {
"identifiers": ["_asset", "-asset", "_Asset", "-Asset"],
"type": "pattern",
"role": "X",
"label": "asset",
"file_builder": "_auxiliary_",
},
"can": {
"identifiers": ["_can", "-can", "_Can", "-Can"],
"type": "pattern",
"role": "X",
"label": "can",
"file_builder": "_auxiliary_",
},
"ephemera": {
"identifiers": ["_ephemera", "-ephemera", "_Ephemera", "-Ephemera"],
"type": "pattern",
"role": "X",
"label": "ephemera",
"file_builder": "_auxiliary_",
},
"auxiliary": {
"identifiers": ["_x", "-x"],
"type": "pattern",
"role": "X",
"label": "image",
"file_builder": "_auxiliary_",
},
}
# Contains header names used in the ingest sheet csv file.
header_names = [
"work_image",
"structure",
"role",
"work_type",
"work_accession_number",
"file_accession_number",
"filename",
"label",
"description",
]
# Contains patterns to be identified in filenames and their corresponding meaning
# side 1 is denoted by s01, etc.
pattern_dict = {
"side": "s(\d{2})",
"part": "p(\d{2})",
"region": "r(\d{2})",
"capture": "c(\d{2})",
}