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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
#![allow(dead_code)]
use crate::structs::hierarchy::*;
use crate::structs::*;
use crate::transformation::TransformationMatrix;
use doc_cfg::doc_cfg;
#[cfg(feature = "rayon")]
use rayon::prelude::*;
use std::cmp::Ordering;
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, PartialEq, Eq)]
/// A Model containing multiple Chains.
pub struct Model {
/// The serial number of this Model
serial_number: usize,
/// The Chains making up this model
chains: Vec<Chain>,
}
impl<'a> Model {
/// Create a new Model.
///
/// ## Arguments
/// * `serial_number` - the serial number
#[must_use]
pub const fn new(serial_number: usize) -> Model {
Model {
serial_number,
chains: Vec::new(),
}
}
/// Create a new Model.
///
/// ## Arguments
/// * `serial_number` - the serial number
pub fn from_iter(serial_number: usize, chains: impl Iterator<Item = Chain>) -> Model {
Model {
serial_number,
chains: chains.collect(),
}
}
/// Get the serial number of this Model.
pub const fn serial_number(&self) -> usize {
self.serial_number
}
/// Set the serial number of this Model.
pub fn set_serial_number(&mut self, new_number: usize) {
self.serial_number = new_number;
}
/// Get the number of Chains making up this Model.
pub fn chain_count(&self) -> usize {
self.chains.len()
}
/// Get the number of Residues making up this Model.
pub fn residue_count(&self) -> usize {
self.chains().map(Chain::residue_count).sum()
}
/// Get the number of Residues making up this Model in parallel.
#[doc_cfg(feature = "rayon")]
pub fn par_residue_count(&self) -> usize {
self.par_chains().map(Chain::residue_count).sum()
}
/// Get the number of Conformers making up this Model.
pub fn conformer_count(&self) -> usize {
self.chains().map(Chain::conformer_count).sum()
}
/// Get the number of Conformers making up this Model in parallel.
#[doc_cfg(feature = "rayon")]
pub fn par_conformer_count(&self) -> usize {
self.par_chains().map(Chain::par_conformer_count).sum()
}
/// Get the number of Atoms making up this Model.
pub fn atom_count(&self) -> usize {
self.chains().map(Chain::atom_count).sum()
}
/// Get the number of Atoms making up this Model in parallel.
#[doc_cfg(feature = "rayon")]
pub fn par_atom_count(&self) -> usize {
self.par_chains().map(Chain::par_atom_count).sum()
}
/// Get a reference to a specific Chain from list of Chains making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Chain
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn chain(&self, index: usize) -> Option<&Chain> {
self.chains().nth(index)
}
/// Get a mutable reference to a specific Chain reference from list of Chains making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Chain
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn chain_mut(&mut self, index: usize) -> Option<&mut Chain> {
self.chains_mut().nth(index)
}
/// Get a reference to a specific Residue from the Residues making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Residue
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn residue(&self, index: usize) -> Option<&Residue> {
self.residues().nth(index)
}
/// Get a mutable reference to a specific Residue from the Residues making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Residue
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn residue_mut(&mut self, index: usize) -> Option<&mut Residue> {
self.residues_mut().nth(index)
}
/// Get a reference to a specific Conformer from the Conformers making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Conformer
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn conformer(&self, index: usize) -> Option<&Conformer> {
self.conformers().nth(index)
}
/// Get a mutable reference to a specific Conformer from the Conformers making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Conformer
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn conformer_mut(&mut self, index: usize) -> Option<&mut Conformer> {
self.conformers_mut().nth(index)
}
/// Get a reference to a specific Atom from the Atoms making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Atom
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn atom(&self, index: usize) -> Option<&Atom> {
self.atoms().nth(index)
}
/// Get a mutable reference to a specific Atom from the Atoms making up this Model.
///
/// ## Arguments
/// * `index` - the index of the Atom
///
/// ## Fails
/// Returns `None` if the index is out of bounds.
pub fn atom_mut(&mut self, index: usize) -> Option<&mut Atom> {
self.atoms_mut().nth(index)
}
/// Get a reference to the specified atom. Its uniqueness is guaranteed by including the
/// `insertion_code`, with its full hierarchy. The algorithm is based
/// on binary search so it is faster than an exhaustive search, but the
/// full structure is assumed to be sorted. This assumption can be enforced
/// by using `pdb.full_sort()`.
#[allow(clippy::unwrap_used)]
pub fn binary_find_atom(
&'a self,
serial_number: usize,
insertion_code: Option<&str>,
) -> Option<AtomConformerResidueChain<'a>> {
if self.chain_count() == 0 {
None
} else {
self.chains
.binary_search_by(|chain| {
if let (Some(low), Some(high)) =
(chain.atoms().next(), chain.atoms().next_back())
{
if low.serial_number() <= serial_number
&& serial_number <= high.serial_number()
{
Ordering::Equal
} else if serial_number < low.serial_number() {
Ordering::Less
} else {
Ordering::Greater
}
} else {
panic!(
"All chains should have at least a single atom for binary_find_atom"
);
}
})
.ok()
.and_then(|index| {
self.chain(index)
.unwrap()
.binary_find_atom(serial_number, insertion_code)
.map(|h| h.extend(self.chain(index).unwrap()))
})
}
}
/// Get a mutable reference to the specified atom. Its uniqueness is guaranteed by
/// including the `insertion_code`, with its full hierarchy. The algorithm is based
/// on binary search so it is faster than an exhaustive search, but the
/// full structure is assumed to be sorted. This assumption can be enforced
/// by using `pdb.full_sort()`.
#[allow(clippy::unwrap_used)]
pub fn binary_find_atom_mut(
&'a mut self,
serial_number: usize,
insertion_code: Option<&str>,
) -> Option<AtomConformerResidueChainMut<'a>> {
if self.chain_count() == 0 {
None
} else {
self.chains
.binary_search_by(|chain| {
if let (Some(low), Some(high)) =
(chain.atoms().next(), chain.atoms().next_back())
{
if low.serial_number() <= serial_number
&& serial_number <= high.serial_number()
{
Ordering::Equal
} else if serial_number < low.serial_number() {
Ordering::Less
} else {
Ordering::Greater
}
} else {
panic!(
"All chains should have at least a single atom for binary_find_atom"
);
}
})
.ok()
.and_then(move |index| {
let chain: *mut Chain = self.chain_mut(index).unwrap();
self.chain_mut(index)
.unwrap()
.binary_find_atom_mut(serial_number, insertion_code)
.map(|h| h.extend(chain))
})
}
}
/// Find all hierarchies matching the given search. For more details see [Search].
pub fn find(
&'a self,
search: Search,
) -> impl DoubleEndedIterator<Item = AtomConformerResidueChain<'a>> + '_ {
self.chains()
.map(move |c| (c, search.clone().add_chain_info(c)))
.filter(|(_c, search)| !matches!(search, Search::Known(false)))
.flat_map(move |(c, search)| c.find(search).map(move |h| h.extend(c)))
}
/// Find all hierarchies matching the given search. For more details see [Search].
pub fn find_mut(
&'a mut self,
search: Search,
) -> impl DoubleEndedIterator<Item = AtomConformerResidueChainMut<'a>> + '_ {
self.chains_mut()
.map(move |c| {
let search = search.clone().add_chain_info(c);
(c, search)
})
.filter(|(_c, search)| !matches!(search, Search::Known(false)))
.flat_map(move |(c, search)| {
let c_ptr: *mut Chain = c;
c.find_mut(search).map(move |h| h.extend(c_ptr))
})
}
/// Get an iterator of references to Chains making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn chains(&self) -> impl DoubleEndedIterator<Item = &Chain> + '_ {
self.chains.iter()
}
/// Get a parallel iterator of references to Chains making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_chains(&self) -> impl ParallelIterator<Item = &Chain> + '_ {
self.chains.par_iter()
}
/// Get an iterator of mutable references to Chains making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn chains_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut Chain> + '_ {
self.chains.iter_mut()
}
/// Get a parallel iterator of mutable references to Chains making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_chains_mut(&mut self) -> impl ParallelIterator<Item = &mut Chain> + '_ {
self.chains.par_iter_mut()
}
/// Get an iterator of references to Residues making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn residues(&self) -> impl DoubleEndedIterator<Item = &Residue> + '_ {
self.chains().flat_map(Chain::residues)
}
/// Get a parallel iterator of references to Residues making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_residues(&self) -> impl ParallelIterator<Item = &Residue> + '_ {
self.par_chains().flat_map(Chain::par_residues)
}
/// Get an iterator of mutable references to Residues making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn residues_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut Residue> + '_ {
self.chains_mut().flat_map(Chain::residues_mut)
}
/// Get a parallel iterator of mutable references to Residues making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_residues_mut(&mut self) -> impl ParallelIterator<Item = &mut Residue> + '_ {
self.par_chains_mut().flat_map(Chain::par_residues_mut)
}
/// Get an iterator of references to Conformers making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn conformers(&self) -> impl DoubleEndedIterator<Item = &Conformer> + '_ {
self.chains().flat_map(Chain::conformers)
}
/// Get a parallel iterator of references to Conformers making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_conformers(&self) -> impl ParallelIterator<Item = &Conformer> + '_ {
self.par_chains().flat_map(Chain::par_conformers)
}
/// Get an iterator of mutable references to Conformers making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn conformers_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut Conformer> + '_ {
self.chains_mut().flat_map(Chain::conformers_mut)
}
/// Get a parallel iterator of mutable references to Conformers making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_conformers_mut(&mut self) -> impl ParallelIterator<Item = &mut Conformer> + '_ {
self.par_chains_mut().flat_map(Chain::par_conformers_mut)
}
/// Get an iterator of references to Atoms making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn atoms(&self) -> impl DoubleEndedIterator<Item = &Atom> + '_ {
self.chains().flat_map(Chain::atoms)
}
/// Get a parallel iterator of references to Atoms making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_atoms(&self) -> impl ParallelIterator<Item = &Atom> + '_ {
self.par_chains().flat_map(Chain::par_atoms)
}
/// Get an iterator of mutable references to Atoms making up this Model.
/// Double ended so iterating from the end is just as fast as from the start.
pub fn atoms_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut Atom> + '_ {
self.chains_mut().flat_map(Chain::atoms_mut)
}
/// Get a parallel iterator of mutable references to Atoms making up this Model.
#[doc_cfg(feature = "rayon")]
pub fn par_atoms_mut(&mut self) -> impl ParallelIterator<Item = &mut Atom> + '_ {
self.par_chains_mut().flat_map(Chain::par_atoms_mut)
}
/// Get an iterator of references to a struct containing all atoms with their hierarchy making up this Model.
pub fn atoms_with_hierarchy(
&'a self,
) -> impl DoubleEndedIterator<Item = hierarchy::AtomConformerResidueChain<'a>> + '_ {
self.chains()
.flat_map(|c| c.atoms_with_hierarchy().map(move |h| h.extend(c)))
}
/// Get an iterator of mutable references to a struct containing all atoms with their hierarchy making up this Model.
pub fn atoms_with_hierarchy_mut(
&'a mut self,
) -> impl DoubleEndedIterator<Item = hierarchy::AtomConformerResidueChainMut<'a>> + '_ {
self.chains_mut().flat_map(|c| {
let chain: *mut Chain = c;
c.atoms_with_hierarchy_mut().map(move |h| h.extend(chain))
})
}
/// Add a new Atom to this Model. It finds if there already is a Chain with the given `chain_id` if there is it will add this atom to that Chain, otherwise it will create a new Chain and add that to the list of Chains making up this Model. It does the same for the Residue, so it will create a new one if there does not yet exist a Residue with the given serial number.
///
/// ## Arguments
/// * `new_atom` - the new Atom to add
/// * `chain_id` - the id of the Chain to add the Atom to
/// * `residue_id` - the id construct of the Residue to add the Atom to
/// * `conformer_id` - the id construct of the Conformer to add the Atom to
///
/// ## Panics
/// It panics if the Chain ID or Residue ID contain any invalid characters.
pub fn add_atom(
&mut self,
new_atom: Atom,
chain_id: impl AsRef<str>,
residue_id: (isize, Option<&str>),
conformer_id: (impl AsRef<str>, Option<&str>),
) {
let chain_id = chain_id.as_ref().trim();
let mut found = false;
let mut new_chain = Chain::new(chain_id).expect("Invalid characters in chain creation");
let mut current_chain = &mut new_chain;
for chain in &mut self.chains {
if chain.id() == chain_id {
current_chain = chain;
found = true;
break;
}
}
#[allow(clippy::unwrap_used)]
if !found {
// As this moves the chain the atom should be added later to keep the reference intact
self.chains.push(new_chain);
current_chain = self.chains.last_mut().unwrap();
}
current_chain.add_atom(new_atom, residue_id, conformer_id);
}
/// Add a Chain to the list of Chains making up this Model. This does not detect any duplicates of names or serial numbers in the list of Chains.
pub fn add_chain(&mut self, chain: Chain) {
self.chains.push(chain);
}
/// Remove all Atoms matching the given predicate.
/// As this is done in place this is the fastest way to remove Atoms from this Model.
pub fn remove_atoms_by<F>(&mut self, predicate: F)
where
F: Fn(&Atom) -> bool,
{
for residue in self.residues_mut() {
residue.remove_atoms_by(&predicate);
}
}
/// Remove all Conformers matching the given predicate.
/// As this is done in place this is the fastest way to remove Conformers from this Model.
pub fn remove_conformers_by<F>(&mut self, predicate: F)
where
F: Fn(&Conformer) -> bool,
{
for chain in self.chains_mut() {
chain.remove_conformers_by(&predicate);
}
}
/// Remove all Residues matching the given predicate.
/// As this is done in place this is the fastest way to remove Residues from this Model.
pub fn remove_residues_by<F>(&mut self, predicate: F)
where
F: Fn(&Residue) -> bool,
{
for chain in self.chains_mut() {
chain.remove_residues_by(&predicate);
}
}
/// Remove all Chains matching the given predicate.
/// As this is done in place this is the fastest way to remove Chains from this Model.
pub fn remove_chains_by<F>(&mut self, predicate: F)
where
F: Fn(&Chain) -> bool,
{
self.chains.retain(|chain| !predicate(chain));
}
/// Remove the Chain specified.
///
/// ## Arguments
/// * `index` - the index of the Chain to remove
///
/// ## Panics
/// Panics if the index is out of bounds.
pub fn remove_chain(&mut self, index: usize) -> Chain {
self.chains.remove(index)
}
/// Remove the Chain specified. It returns `true` if it found a matching Chain and removed it.
/// It removes the first matching Chain from the list.
///
/// ## Arguments
/// * `id` - the id of the Chain to remove
pub fn remove_chain_by_id(&mut self, id: impl AsRef<str>) -> bool {
let id = id.as_ref();
let index = self.chains().position(|a| a.id() == id);
if let Some(i) = index {
self.remove_chain(i);
true
} else {
false
}
}
/// Remove the Chain specified. It returns `true` if it found a matching Chain and removed it.
/// It removes the first matching Chain from the list.
/// Done in parallel.
///
/// ## Arguments
/// * `id` - the id of the Chain to remove
#[doc_cfg(feature = "rayon")]
pub fn par_remove_chain_by_id(&mut self, id: impl AsRef<str>) -> bool {
let id = id.as_ref();
let index = self.chains.par_iter().position_first(|a| a.id() == id);
if let Some(i) = index {
self.remove_chain(i);
true
} else {
false
}
}
/// Remove all empty Chain from this Model, and all empty Residues from the Chains.
pub fn remove_empty(&mut self) {
self.chains_mut().for_each(Chain::remove_empty);
self.chains.retain(|c| c.residue_count() > 0);
}
/// Remove all empty Chain from this Model, and all empty Residues from the Chains in parallel.
#[doc_cfg(feature = "rayon")]
pub fn par_remove_empty(&mut self) {
self.par_chains_mut().for_each(Chain::remove_empty);
self.chains.retain(|c| c.residue_count() > 0);
}
/// Apply a transformation to the position of all atoms making up this Model, the new position is immediately set.
pub fn apply_transformation(&mut self, transformation: &TransformationMatrix) {
for atom in self.atoms_mut() {
atom.apply_transformation(transformation);
}
}
/// Apply a transformation to the position of all atoms making up this Model, the new position is immediately set.
/// Done in parallel.
#[doc_cfg(feature = "rayon")]
pub fn par_apply_transformation(&mut self, transformation: &TransformationMatrix) {
self.par_atoms_mut()
.for_each(|atom| atom.apply_transformation(transformation));
}
/// Join this Model with another Model, this moves all atoms from the other Model
/// to this Model. All other (meta) data of this Model will stay the same. It will add
/// new Chains and Residues as defined in the other model.
pub fn join(&mut self, other: Model) {
self.chains.extend(other.chains);
}
/// Sort the Chains of this Model.
pub fn sort(&mut self) {
self.chains.sort();
}
/// Sort the Chains of this Model in parallel.
#[doc_cfg(feature = "rayon")]
pub fn par_sort(&mut self) {
self.chains.par_sort();
}
}
use std::fmt;
impl fmt::Display for Model {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"MODEL SerialNumber:{}, Chains: {}",
self.serial_number,
self.chains.len()
)
}
}
impl PartialOrd for Model {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.serial_number.cmp(&other.serial_number))
}
}
impl Ord for Model {
fn cmp(&self, other: &Self) -> Ordering {
self.serial_number.cmp(&other.serial_number)
}
}
impl Extend<Chain> for Model {
/// Extend the Chains on this Model by the given iterator of Chains.
fn extend<T: IntoIterator<Item = Chain>>(&mut self, iter: T) {
self.chains.extend(iter);
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_equality() {
let a = Model::new(0);
let b = a.clone();
let c = Model::new(1);
assert_eq!(a, b);
assert_ne!(a, c);
assert_ne!(b, c);
assert!(a < c);
}
#[test]
#[allow(clippy::unwrap_used)]
fn test_children() {
let mut a = Model::new(0);
a.add_chain(Chain::new("A").unwrap());
let mut iter = a.chains();
assert_eq!(iter.next(), Some(&Chain::new("A").unwrap()));
assert_eq!(iter.next(), None);
assert_eq!(a.chain_count(), 1);
assert_eq!(a.conformer_count(), 0);
assert_eq!(a.residue_count(), 0);
assert_eq!(a.atom_count(), 0);
}
#[test]
#[allow(clippy::unwrap_used)]
fn test_remove() {
let mut a = Model::new(0);
a.add_chain(Chain::new("A").unwrap());
a.add_chain(Chain::new("C").unwrap());
assert_eq!(a.remove_chain(0), Chain::new("A").unwrap());
a.remove_chain_by_id("C");
assert_eq!(a.chain_count(), 0);
}
#[test]
fn test_display() {
let a = Model::new(0);
format!("{a:?}");
format!("{a}");
}
#[test]
#[allow(clippy::unwrap_used)]
fn test_hierarchy_mut() {
// Create the struct to use
let mut a = Model::new(0);
a.add_chain(Chain::new("A").unwrap());
a.add_atom(
Atom::new(false, 0, "ATOM", 0.0, 0.0, 0.0, 0.0, 0.0, "C", 0).unwrap(),
"A",
(0, None),
("ALA", None),
);
// Test if changing properties for each element of the hierarchy is possible
for mut hierarchy in a.atoms_with_hierarchy_mut() {
let _ = hierarchy.residue().serial_number();
hierarchy.chain_mut().set_id("B");
let _ = hierarchy.residue().serial_number(); // Show that multiple borrows is valid, as long as they do not overlap
hierarchy.residue_mut().set_serial_number(1);
hierarchy.chain_mut().set_id("C");
hierarchy.conformer_mut().set_name("D");
hierarchy.atom_mut().set_serial_number(123);
}
// Test that casting it to a 'normal' hierarchy works (needs some 'magic' to get an owned variant)
let hierarchy = a.atoms_with_hierarchy_mut().next().unwrap();
assert_eq!(hierarchy.without_mut().chain().id(), "C");
// Test that all changes were properly executed
assert_eq!(a.chain(0).unwrap().id(), "C");
assert_eq!(a.residue(0).unwrap().serial_number(), 1);
assert_eq!(a.conformer(0).unwrap().name(), "D");
assert_eq!(a.atom(0).unwrap().serial_number(), 123);
}
}