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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411 | def get_fm_tomogram_set() -> SCTomogramSet:
"""
Collect all tomograms that have been reviewed for flagellar motors from
BYU's supercomputer into an SCTomogramSet.
From an SCTomogramSet `tomo_set`, get public tomograms with
`tomo_set.get_public_tomograms()`.
Does not initially load the tomogram image data. Given a `Tomogram` called
`tomo`, one can load and access the image data in one step with
`tomo.get_data()`.
Returns:
SCTomogramSet containing annotated tomograms
"""
# Collect all tomograms together into an SCTomogramSet.
tomogram_set = SCTomogramSet()
tomograms = [] # A temporary list to collect tomograms. To be placed into the tomogram_set later.
### PUBLIC POSITIVES ###
print(f'\nLoading public positives.\n\tCurrent number of tomograms: {len(tomogram_set.tomograms)}\n')
# ~~~ DRIVE 1 ~~~ #
# Hylemonella
root = f"/grphome/grp_tomo_db1_d1/nobackup/archive/TomoDB1_d1/FlagellarMotor_P1/Hylemonella gracilis"
dir_regex = re.compile(r"yc\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^fm.mod$", re.IGNORECASE)
tomogram_regex = re.compile(r".*\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# ~~~ DRIVE 2 ~~~ #
# Legionella
root = f"/grphome/grp_tomo_db1_d2/nobackup/archive/TomoDB1_d2/FlagellarMotor_P2/legionella"
dir_regex = re.compile(r"dg\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# Pseudomonas
root = f"/grphome/grp_tomo_db1_d2/nobackup/archive/TomoDB1_d2/FlagellarMotor_P2/Pseudomonasaeruginosa/done"
dir_regex = re.compile(r"ab\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# Proteus_mirabilis
root = f"/grphome/grp_tomo_db1_d2/nobackup/archive/TomoDB1_d2/FlagellarMotor_P2/Proteus_mirabilis"
dir_regex = re.compile(r"qya\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM\.mod$")
tomogram_regex = re.compile(r".*\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# ~~~ DRIVE 3 ~~~ #
# Bdellovibrio
root = f"/grphome/grp_tomo_db1_d3/nobackup/archive/TomoDB1_d3/jhome_extra/Bdellovibrio_YW"
dir_regex = re.compile(r"yc\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^flagellum_SIRT_1k\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# Azospirillum
root = f"/grphome/grp_tomo_db1_d3/nobackup/archive/TomoDB1_d3/jhome_extra/AzospirillumBrasilense/done"
dir_regex = re.compile(r"ab\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM3\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# Add tomograms to `tomogram_set` and reset the temporary collection list `tomograms`
for tomo in tomograms:
tomogram_set.append(tomo, private=False)
tomograms = []
print(f'Loading private positives.\n\tCurrent number of tomograms: {len(tomogram_set.tomograms)}\n')
### PRIVATE POSITIVES ###
# ~~~ ZHIPING ~~~ #
root = f"/grphome/fslg_imagseg/nobackup/archive/zhiping_data/caulo_WT/"
dir_regex = re.compile(r"rrb\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^flagellum\.mod$")
tomogram_regex = re.compile(r".*\.rec$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# ~~~ ANNOTATION PARTY ~~~ #
root = f"/grphome/grp_tomo_db1_d4/nobackup/archive/ExperimentRuns/"
dir_regex = re.compile(r"(sma\d{4}.*)|(Vibrio.*)")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"flagellar_motor\.mod")
tomogram_regex = re.compile(r".*\.mrc$")
these_tomograms = seek_annotated_tomos(
directories,
tomogram_regex,
[flagellum_regex],
["Flagellar Motor"]
)
tomograms += these_tomograms
# Add tomograms to `tomogram_set` and reset the temporary collection list `tomograms`
for tomo in tomograms:
tomogram_set.append(tomo, private=True)
tomograms = []
print(f'Loading public negatives.\n\tCurrent number of tomograms: {len(tomogram_set.tomograms)}\n')
### PUBLIC NEGATIVES ###
# ~~~ DRIVE 1 ~~~ #
# Hylemonella
root = f"/grphome/grp_tomo_db1_d1/nobackup/archive/TomoDB1_d1/FlagellarMotor_P1/Hylemonella gracilis"
dir_regex = re.compile(r"yc\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^fm.mod$", re.IGNORECASE)
tomogram_regex = re.compile(r".*\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# ~~~ DRIVE 2 ~~~ #
# Legionella
root = f"/grphome/grp_tomo_db1_d2/nobackup/archive/TomoDB1_d2/FlagellarMotor_P2/legionella"
dir_regex = re.compile(r"dg\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# Pseudomonas
root = f"/grphome/grp_tomo_db1_d2/nobackup/archive/TomoDB1_d2/FlagellarMotor_P2/Pseudomonasaeruginosa/done"
dir_regex = re.compile(r"ab\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# Proteus_mirabilis
root = f"/grphome/grp_tomo_db1_d2/nobackup/archive/TomoDB1_d2/FlagellarMotor_P2/Proteus_mirabilis"
dir_regex = re.compile(r"qya\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM\.mod$")
tomogram_regex = re.compile(r".*\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# ~~~ DRIVE 3 ~~~ #
# Bdellovibrio
root = f"/grphome/grp_tomo_db1_d3/nobackup/archive/TomoDB1_d3/jhome_extra/Bdellovibrio_YW"
dir_regex = re.compile(r"yc\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^flagellum_SIRT_1k\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# Azospirillum
root = f"/grphome/grp_tomo_db1_d3/nobackup/archive/TomoDB1_d3/jhome_extra/AzospirillumBrasilense/done"
dir_regex = re.compile(r"ab\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^FM3\.mod$")
tomogram_regex = re.compile(r".*SIRT_1k\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# Add tomograms to `tomogram_set` and reset the temporary collection list `tomograms`
for tomo in tomograms:
tomogram_set.append(tomo, private=False)
tomograms = []
# ~~~ NEGATIVES BRAXTON FOUND ON RANDY DATA ~~~ #
root = f"/grphome/grp_tomo_db1_d3/nobackup/autodelete/negative_data"
these_tomograms = [TomogramFile(os.path.join(root, path), load=False) for path in os.listdir(root)]
tomograms += these_tomograms
print(f'Loading private negatives.\n\tCurrent number of tomograms: {len(tomogram_set.tomograms)}\n')
### PRIVATE NEGATIVES ###
# ~~~ ZHIPING ~~~ #
root = f"/grphome/fslg_imagseg/nobackup/archive/zhiping_data/caulo_WT/"
dir_regex = re.compile(r"rrb\d{4}.*")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"^flagellum\.mod$")
tomogram_regex = re.compile(r".*\.rec$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# ~~~ ANNOTATION PARTY ~~~ #
root = f"/grphome/grp_tomo_db1_d4/nobackup/archive/ExperimentRuns/"
dir_regex = re.compile(r"(sma\d{4}.*)|(Vibrio.*)")
directories = seek_dirs(root, dir_regex)
flagellum_regex = re.compile(r"flagellar_motor\.mod")
tomogram_regex = re.compile(r".*\.mrc$")
these_tomograms = seek_unannotated_tomos(
directories,
tomogram_regex,
[flagellum_regex]
)
tomograms += these_tomograms
# Add tomograms to `tomogram_set` and reset the temporary collection list `tomograms`
for tomo in tomograms:
tomogram_set.append(tomo, private=True)
tomograms = []
print(f'Loading complete.\n\tCurrent number of tomograms: {len(tomogram_set.tomograms)}\n')
# Return the completed set
return tomogram_set
|