ncbi 0.2.0-beta

Rust data structures for NCBI APIs
Documentation
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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
//! NCBI Sequence Elements
//!
//! As per [NCBI C++ Toolkit Docs](https://ncbi.github.io/cxx-toolkit/pages/ch_datamod)
//!
//! Adapted from ["seq.asn"](https://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/src/objects/seq/seq.asn)

use crate::general::{Date, DbTag, IntFuzz, ObjectId, UserObject};
use crate::parsing::{read_vec_node, read_attributes, read_int, read_node, read_string, UnexpectedTags, attribute_value};
use crate::r#pub::PubEquiv;
use crate::seqalign::SeqAlign;
use crate::seqblock::{EMBLBlock, GBBlock, PDBBlock, PIRBlock, PRFBlock, SPBlock};
use crate::seqfeat::{BioSource, ModelEvidenceSupport, OrgRef, SeqFeat};
use crate::seqloc::{SeqId, SeqLoc};
use crate::seqres::SeqGraph;
use crate::seqtable::SeqTable;
use crate::parsing::{XmlNode, XmlVecNode, XmlValue};
use enum_primitive::FromPrimitive;
use quick_xml::events::{BytesStart, Event};
use quick_xml::events::attributes::Attributes;
use quick_xml::Reader;
use serde::{Deserialize, Serialize};
use serde_repr::{Deserialize_repr, Serialize_repr};

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug, Default)]
#[serde(rename_all = "kebab-case")]
/// Single continuous biological sequence.
///
/// It can be nucleic acid or protein. It can be fully instantiated (ie: data
/// for every residue) or only partially instantiated (eg: we know a frag is
/// 10kb long, but we only have data over 1kb)
///
/// Coordinates on ANY class of [`BioSeq`] are ALWAYS integer offsets. So the
/// first residue in any [`BioSeq`] is at position 0. The last residue of any
/// [`BioSeq`] is in position `length - 1`
///
/// The consequence of this design is that one uses EXACTLY the same data object
/// to describe gene location on an unsequenced restriction fragment, as you
/// would describe a fully sequenced piece of DNA, or a putative overview of a
/// large genetic region, etc. Sequence and physical map data can be easily
/// integrated into a single, dynamically assembled view by creating a segmented
/// sequence which points alternatively to raw or constructed [`BioSeq`]'s and
/// parts of a map [`BioSeq`]. The relationship between a genetic and physical
/// map is simply an alignment between two `map` [`BioSeq`]'s, no different than
/// the alignment between two `raw` sequences generated by a database search
/// program like BLAST or FASTA.
pub struct BioSeq {
    /// equivalent identifiers
    pub id: Vec<SeqId>,
    /// descriptors
    pub descr: Option<SeqDescr>,
    /// the sequence data
    pub inst: Option<SeqInst>, // TODO: temporary `Option`
    pub annot: Option<Vec<SeqAnnot>>,
}

impl XmlNode for BioSeq {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Bioseq")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> {
        let mut bioseq = Self::default();

        let id_elem = BytesStart::new("Bioseq_id");
        let descr_elem = BytesStart::new("Bioseq_descr");
        let inst_elem = BytesStart::new("Bioseq_inst");
        let annot_elem = BytesStart::new("Bioseq_annot");

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == id_elem.name() {
                        bioseq.id = read_vec_node(reader, id_elem.to_end());
                    } else if name == descr_elem.name() {
                        bioseq.descr = read_node(reader);
                    } else if name == inst_elem.name() {
                        bioseq.inst = read_node(reader);
                    } else if name == annot_elem.name() {
                        bioseq.annot = Some(read_vec_node(reader, annot_elem.to_end()));
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return bioseq.into();
                    }
                }
                _ => (),
            }
        }
    }
}

pub type SeqDescr = Vec<SeqDesc>;

impl XmlNode for SeqDescr {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-descr")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> {
        return SeqDesc::vec_from_reader(reader, Self::start_bytes().to_end()).into();
    }
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// # Note
/// `MolType`, `Modif`, `Method`, and `Org` are consolidated and expanded
/// in [`OrgRef`]`, [`BioSource`], and [`MolInfo`] in this specification.
/// They will be removed in later specifications. Do not use them in the future.
/// Instead expect the new structures.
pub enum SeqDesc {
    #[deprecated]
    MolType(GIBBMol),
    /// type of molecule

    #[deprecated]
    /// modifiers
    Modif(GIBBMod),

    #[deprecated]
    /// sequencing method
    Method(GIBBMethod),

    /// name for this sequence
    Name(String),
    /// title for this sequence
    Title(String),

    #[deprecated]
    /// if all from one organism
    Org(OrgRef),

    /// a more extensive comment
    Comment(String),
    /// a numbering system
    Num(Numbering),
    /// map location of this sequence
    MapLoc(DbTag),
    /// PIR specific info
    PIR(PIRBlock),
    /// GenBank specific info
    Genbank(GBBlock),
    /// reference to a publication
    Pub(PubDesc),
    /// overall region (globin locus)
    Region(String),
    /// user defined object
    User(UserObject),
    /// SWISSPROT specific info
    SP(SPBlock),
    /// EMBL specific information
    DbXref(DbTag),
    /// xref to other databases
    Embl(EMBLBlock),
    /// date entry first created/released
    CreateDate(Date),
    UpdateDate(Date),
    /// PRF specific information
    PRF(PRFBlock),
    /// PDB specific information
    PDB(PDBBlock),
    /// Cofactor, etc associated but not bound
    Het(Heterogen),
    /// source of materials, includes [`OrgRef`]
    Source(BioSource),
    /// info on the molecule and techniques
    MolInfo(MolInfo),
    /// model evidence for XM records
    ModelEv(ModelEvidenceSupport),
}

impl XmlNode for SeqDesc {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seqdesc")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> {
        // variants
        let source_element = BytesStart::new("Seqdesc_source");
        let molinfo_element = BytesStart::new("Seqdesc_molinfo");
        let pub_element = BytesStart::new("Seqdesc_pub");
        let comment_element = BytesStart::new("Seqdesc_comment");
        let user_element = BytesStart::new("Seqdesc_user");
        let create_element = BytesStart::new("Seqdesc_create-date");
        let update_element = BytesStart::new("Seqdesc_update-date");

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();
                    if name == source_element.name() {
                        return Self::Source(read_node(reader).unwrap()).into();
                    } else if name == molinfo_element.name() {
                        return Self::MolInfo(read_node(reader).unwrap()).into();
                    } else if name == pub_element.name() {
                        return Self::Pub(read_node(reader).unwrap()).into();
                    } else if name == comment_element.name() {
                        return Self::Comment(read_string(reader).unwrap()).into();
                    } else if name == user_element.name() {
                        return Self::User(read_node(reader).unwrap()).into();
                    } else if name == create_element.name() {
                        return Self::CreateDate(read_node(reader).unwrap()).into()
                    } else if name == update_element.name() {
                        return Self::UpdateDate(read_node(reader).unwrap()).into()
                    }
                }
                Event::End(e) => {
                    // this occurs for a SeqDesc variant that does not yet have a parsing implementation
                    if Self::is_end(&e) {
                        return None;
                    }
                }
                _ => (),
            }
        }
    }
}
impl XmlVecNode for SeqDesc {}

enum_from_primitive! {
    #[allow(non_camel_case_types)]
    #[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug, Default)]
    #[repr(u8)]
    /// Internal representation of biomolecular type for [`MolInfo`]
    ///
    /// # Notes
    ///
    /// - Non-camelcase types look cleaner for names with "RNA"/"DNA", therefore non-CamelCase names
    ///   have been explicitly allowed
    ///
    /// - Original implementation lists this as `INTEGER`, therefore it is assumed that
    ///   serialized representation is an integer
    pub enum BioMol {
        #[default]
        Unknown,
        Genomic,
        PreRNA,
        /// precursor RNA of any sort
        mRNA,
        rRNA,
        tRNA,
        snRNA,
        scRNA,
        Peptide,
        OtherGenetic,
        /// other genetic material
        Genomic_mRNA,
        /// reported a mix of genomic dna and cdna sequence
        cRNA,
        /// viral RNA genome copy intermediate
        snoRNA,
        /// small nucleolar RNAGG
        TranscribedRNA,
        /// transcribed RNA other than existing classes
        ncRNA,
        tmRNA,
        Other = 255,
    }
}

impl XmlNode for BioMol {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("MolInfo_biomol")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self>
    where
        Self: Sized,
    {
        BioMol::from_u8(read_int::<u8>(reader).unwrap())
    }
}

enum_from_primitive! {
    #[allow(non_camel_case_types)]
    #[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug, Default)]
    #[repr(u8)]
    /// Internal representation of molecular technique for [`MolInfo`]
    ///
    /// # Note
    ///
    /// Original implementation lists this as `INTEGER`, therefore it is assumed that
    /// serialized representation is an integer
    pub enum MolTech {
        #[default]
        Unknown,
        /// standard sequencing
        Standard,
        /// Expressed Sequence Tag
        EST,
        /// Sequence Tagged Site
        STS,
        /// One-pass genomic sequence
        Survey,
        /// from genetic mapping techniques
        GeneMap,
        /// from physical mapping techniques
        PhysMap,
        /// derived from other data, not a primary entity
        Derived,
        /// conceptual translation
        ConceptTrans,
        /// peptide was sequenced
        SeqPept,
        /// concept transl. w/ partial pept. seq.
        Both,
        /// sequenced peptide, ordered by overlap
        SeqPeptOverlap,
        /// sequenced peptide, ordered by homology
        SeqPeptHomol,
        /// conceptual translation. supplied by author
        ConceptTransA,
        /// unordered High Throughput sequence contig
        HTGS1,
        /// ordered High Throughput sequence contig
        HTGS2,
        /// finished High Throughput sequence
        HTGS3,
        /// full length insert cDNA
        FLI_cDNA,
        /// single genomic reads for coordination
        HTGS0,
        /// high throughput cDNA,
        HTC,
        /// whole genome shotgun sequencing
        WGS,
        /// barcode of life project
        Barcode,
        /// composite of WGS and HTGS
        CompositeWgsHtgs,
        /// transcriptome shotgun assembly
        TSA,
        /// targeted locus sets/studies
        Targeted,
        /// use `tech_exp` from [`MolInfo`]
        Other = 255,
    }
}

impl XmlNode for MolTech {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("MolInfo_tech")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self>
    where
        Self: Sized,
    {
        MolTech::from_u8(read_int::<u8>(reader).unwrap())
    }
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug, Default)]
#[repr(u8)]
/// Capture sequence completeness.
///
/// Completeness is not indicated in most records. For genomes, assume
/// the sequences are incomplete unless specifically marked as complete.
/// For mRNAs, assume the ends are not known exactly unless marked as having
/// the left or right end.
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum MolCompleteness {
    #[default]
    Unknown,
    Complete,
    Partial,
    NoLeft,
    NoRight,
    NoEnds,
    HasLeft,
    HasRight,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug, Default)]
#[serde(rename_all = "kebab-case")]
pub struct MolInfo {
    pub bio_mol: BioMol,
    pub tech: MolTech,
    /// explanation if `tech` not enough
    pub tech_exp: Option<String>,
    pub completeness: MolCompleteness,
    pub gb_mol_type: Option<String>,
}

impl XmlNode for MolInfo {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("MolInfo")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self>
    where
        Self: Sized,
    {
        let mut mol_info = Self::default();

        let bio_mol_element = BytesStart::new("MolInfo_biomol");
        let tech_element = BytesStart::new("MolInfo_tech");

        let forbidden = UnexpectedTags(&[]);

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == bio_mol_element.name() {
                        mol_info.bio_mol = read_node(reader).unwrap();
                    } else if name == tech_element.name() {
                        mol_info.tech = read_node(reader).unwrap();
                    } else if name != Self::start_bytes().name() {
                        forbidden.check(&name);
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return mol_info.into();
                    }
                }
                _ => (),
            }
        }
    }
}

#[allow(non_camel_case_types)]
#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// GenInfo Backbone molecule types
///
/// Captures type of molecule represented
///
/// # Note
///
/// Original implementation lists this as `ENUMERATED`, therefore it is assumed that
/// serialized representation is an integer
pub enum GIBBMol {
    Unknown,
    Genomic,
    /// Precursor RNA of any sort really
    PreRNA,
    mRNA,
    rRNA,
    tRNA,
    snRNA,
    scRNA,
    Peptide,
    /// other genetic material
    OtherGenetic,
    /// reported a mix of genomic and cDNA sequence
    Genomic_mRNA,
    Other = 255,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// GenInfo Backbone Modifiers
///
/// # Note
///
/// Original implementation lists this as `ENUMERATED`, therefore it is assumed that
/// serialized representation is an integer
pub enum GIBBMod {
    DNA,
    RNA,
    ExtraChrom,
    Plasmid,
    Mitochondrial,
    Chloroplast,
    Kinetoplast,
    Cyanelle,
    Synthetic,
    Recombinant,
    Partial,
    Complete,
    /// subject of mutagenesis
    Mutagen,
    /// natural mutant
    NatMut,
    Transposon,
    InsertionSeq,
    /// missing left end (5' for na, NH2 for aa)
    NoLeft,
    /// missing right end (3' for na, COOH for aa)
    NoRight,
    MacroNuclear,
    ProViral,
    /// expressed sequence tag
    EST,
    /// sequenced tagged site
    STS,
    /// one pass survey sequence
    Survey,
    Chromoplast,
    /// is a genetic map
    GeneMap,
    /// is an ordered restriction map
    RestMap,
    /// is a physical map (not ordered restriction map)
    PhysMap,
    Other = 255,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Sequencing method
///
/// # Note
///
/// Original implementation lists this as `ENUMERATED`, therefore it is assumed that
/// serialized representation is an integer
pub enum GIBBMethod {
    /// Conceptual translation
    ConceptTrans = 1,
    /// Peptide was sequenced
    SeqPept,
    /// concept transl. w/ partial pept. seq.
    Both,
    /// sequenced peptide, ordered by overlap
    SeqPeptOverlap,
    /// sequenced peptide, ordered by homology
    SeqPeptHomol,
    /// conceptual transl. supplied by author.
    ConceptTransA,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// Any display numbering system
pub enum Numbering {
    /// continuous numbering
    Cont(NumCont),
    /// enumerated names for residues
    Enum(NumEnum),
    /// by reference to another sequence
    Ref(NumRef),
    /// supports mapping to a float system
    Real(NumReal),
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug, Default)]
#[serde(rename_all = "kebab-case")]
/// continuous display numbering system
pub struct NumCont {
    /// number assigned to first residue
    /// TODO: should default to `1`
    pub ref_num: u64,

    /// 0-indexed?
    /// TODO: should default to `false`
    pub has_zero: bool,

    /// Ascending numbers
    /// TODO: should default to `true`
    pub ascending: bool,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// any tags to residues
pub struct NumEnum {
    /// number of tags to follow
    pub num: u64,
    /// the tags
    pub names: Vec<String>,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Internal representation of type of reference for [`NumRef`]
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum NumRefType {
    NotSet,
    /// by segmented or const seq sources
    Sources,
    /// by alignments given below
    Aligns,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// Number by reference to other sequences
pub struct NumRef {
    /// type of reference
    pub r#type: NumRefType,
    /// alignments to pass for [`NumRefType::Aligns`]
    pub aligns: Option<SeqAlign>,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// Mapping to floating point system
/// from an integer system used by [`BioSeq`]
/// `position = (a * int_position) + b`
pub struct NumReal {
    pub a: f64,
    pub b: f64,
    pub units: Option<String>,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug, Default)]
#[serde(rename_all = "kebab-case")]
/// type of reference in a GenBank record
pub enum PubDescRefType {
    #[default]
    /// refers to sequence
    Seq,
    /// refers to unspecified features
    Sites,
    /// refers to specified features
    Feats,
    /// nothing specified (EMBL)
    NoTarget,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug, Default)]
#[serde(rename_all = "kebab-case")]
pub struct PubDesc {
    pub r#pub: PubEquiv,
    pub name: Option<String>,
    pub fig: Option<String>,
    /// numbering from paper
    pub num: Option<Numbering>,
    /// numbering problem with paper
    pub num_exc: Option<bool>,
    /// poly A tail indicated in figure
    pub poly_a: Option<bool>,
    /// map location reported in paper
    pub map_loc: Option<String>,
    /// original sequence from paper
    pub seq_raw: Option<String>,
    /// this seq aligned with others in paper
    pub align_group: Option<i64>,
    /// any comment on this pub in context
    pub comment: Option<String>,
    /// type of reference in a GenBank record
    pub ref_type: PubDescRefType,
}

impl XmlNode for PubDesc {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Pubdesc")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self>
    where
        Self: Sized,
    {
        let mut desc = Self::default();

        // elements
        let pub_element = BytesStart::new("Pubdesc_pub");

        let forbidden = UnexpectedTags(&[]);

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == pub_element.name() {
                        desc.r#pub = read_node(reader).unwrap();
                    } else if name != Self::start_bytes().name() {
                        forbidden.check(&name);
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return desc.into();
                    }
                }
                _ => (),
            }
        }
    }
}

/// Cofactor, prosthetic group, inhibitor, etc
pub type Heterogen = String;

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Representation class for [`SeqInst`]
///
/// Stored by [`SeqInst`] and is independent of [`Mol`]
///
/// Variants involve the particular data structure used to represent the knowledge
/// about the molecule, no matter which part of the molecule type branch it may be in.
/// The [`Repr`] element indicates the type of representation used. The aim of such a
/// set of representation classes is to supper the information to express different
/// views of sequence based objects, from chromosomes to restriction fragments,
/// from genetic maps to proteins, within a single overall model.
///
/// # Variants
/// - `Virtual`: used to describe a sequence about which we may have
///              information on the molecule itself but no sequence yet.
/// - `Raw`: used for what we traditionally consider a sequence. Molecule type,
///          strandedness, length, and sequence are known. In this case, [`SeqInst.seq_data`]
///          contains sequence data.
/// - `Seg`: A **segmented** representation is very analogous to a virtual representation.
///          It exists through references to other [`BioSeq`]'s, so there is
///          molecular information, but no `seq_data`. Only data is contained
///          by reference to other [`BioSeq`]'s in [`SeqInst::ext`] to hold an
///          array of [`SeqLoc`]. That is, the extension is an ordered series
///          of locations on *other* [`BioSeq`] objects. If one needed to
///          retrieve the base at the first position in the segmented [`BioSeq`],
///          one would go to the first [`SeqLoc`] in the extension, and return the
///          appropriate base from the [`BioSeq`] it points to.
/// - `Const`: A **constructed** [`BioSeq`] is used to describe an assembly or
///            merge of other [`BioSeq`]'s. It is analogous to the raw representation.
///            It is really meant for tracking higher level merging.
/// - `Map`: A **map** is akin to a virtual [`BioSeq`]. In the case where molecular
///          information is known, but there is no complete sequence data, [`SeqInst::ext`]
///          is a sequence of [`SeqFeat`] objects. For a genetic map, this
///          feature table contains [`GeneRef`] features. An ordered restriction
///          map would have a feature table containing [`RsiteRef`] features.
///          The feature table is part of [`SeqInst`] because for a map, it is
///          an essential part of instantiating the map [`BioSeq`], not merely
///          annotation on a known sequence.
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum Repr {
    /// empty
    NotSet,
    /// no seq data
    Virtual,
    /// continuous sequence
    Raw,
    /// segmented sequence
    Seg,
    /// constructed sequence
    Const,
    /// reference to another sequence
    Ref,
    /// consensus sequence or pattern
    Consen,
    /// ordered map of any kind
    Map,
    /// sequence made by changes (delta) to others
    Delta,
    Other = 255,
}

impl XmlValue for Repr {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-inst_repr")
    }

    fn from_attributes(attributes: Attributes) -> Option<Self> {
        if let Some(attributes) = attribute_value(attributes) {
            match attributes.as_str() {
                "not-set" => Self::NotSet.into(),
                "virtual" => Self::Virtual.into(),
                "raw" => Self::Raw.into(),
                "seg" => Self::Seg.into(),
                "const" => Self::Const.into(),
                "ref" => Self::Ref.into(),
                "consen" => Self::Consen.into(),
                "map" => Self::Map.into(),
                "delta" => Self::Delta.into(),
                "other" => Self::Other.into(),
                _ => None
            }
        } else {
            None
        }
    }
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// molecule class in living organism
///  > cdna = rna
///
/// # Note
///
/// Original implementation lists this as `ENUMERATED`, therefore it is assumed that
/// serialized representation is an integer
pub enum Mol {
    NotSet,
    DNA,
    RNA,
    AA,
    /// just a nucleic acid
    NA,
    Other = 255,
}

impl XmlValue for Mol {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-inst_mol")
    }

    fn from_attributes(attributes: Attributes) -> Option<Self> {
        if let Some(attributes) = attribute_value(attributes) {
            match attributes.as_str() {
                "not-set" => Self::NotSet.into(),
                "dna" => Self::DNA.into(),
                "rna" => Self::NotSet.into(),
                "aa" => Self::DNA.into(),
                "na" => Self::DNA.into(),
                "other" => Self::Other.into(),
                _ => None
            }
        } else {
            None
        }
    }
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug, Default)]
#[repr(u8)]
/// Internal representation of biomolecule topology for [`SeqInst`]
///
/// # Note
///
/// Original implementation lists this as `ENUMERATED`, therefore it is assumed that
/// serialized representation is an integer
pub enum Topology {
    NotSet,
    #[default]
    Linear,
    Circular,
    Tandem,
    Other = 255,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Internal representation of strandedness in living organism for [`SeqInst`]
///
/// # Note
///
/// Original implementation lists this as `ENUMERATED`, therefore it is assumed that
/// serialized representation is an integer
pub enum Strand {
    NotSet,
    /// single strand
    SS,
    /// double strand
    DS,
    Mixed,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// Instances of sequences
///
/// Represents things like: is DNA, RNA, or protein? Is it circular or linear?
/// Double-stranded or single-stranded? How long is it?
pub struct SeqInst {
    /// representation class
    pub repr: Repr,

    /// molecule class in living organism
    pub mol: Mol,

    /// length of sequence in residues
    pub length: Option<u64>,

    /// length of uncertainty
    pub fuzz: Option<IntFuzz>,

    /// topology of molecule
    pub topology: Topology,

    /// strandedness in living organism
    pub strand: Strand,

    /// the sequence
    pub seq_data: Option<SeqData>,

    /// extensions for special types
    pub ext: Option<SeqExt>,

    /// sequence history
    pub hist: Option<SeqHist>,
}

impl Default for SeqInst {
    fn default() -> Self {
        let repr = Repr::Other;
        let mol = Mol::Other;
        let strand = Strand::NotSet;
        Self {
            repr, mol,
            length: None,
            fuzz: None,
            topology: Default::default(),
            strand,
            seq_data: None,
            ext: None,
            hist: None,
        }
    }
}

impl XmlNode for SeqInst {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-inst")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> where Self: Sized {
        let mut inst = Self::default();

        // elements
        let repr_element = BytesStart::new("Seq-inst_repr");
        let mol_element = BytesStart::new("Seq-inst_mol");
        let length_element = BytesStart::new("Seq-inst_length");
        let ext_element = BytesStart::new("Seq-inst_ext");

        let forbidden = UnexpectedTags(&[]);

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == length_element.name() {
                        inst.length = read_int(reader);
                    } else if name == ext_element.name() {
                        inst.ext = read_node(reader);
                    } else if name != Self::start_bytes().name() {
                        forbidden.check(&name);
                    }
                }
                Event::Empty(e) => {
                    let name = e.name();

                    if name == repr_element.name() {
                        inst.repr = read_attributes(&e).unwrap();
                    } else if name == mol_element.name() {
                        inst.mol = read_attributes(&e).unwrap();
                    } else if name != Self::start_bytes().name() {
                        forbidden.check(&name);
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return inst.into()
                    }
                }
                _ => ()
            }
        }
    }
}

// Sequence extensions for representing more complex types

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub enum SeqExt {
    /// segmented sequences
    Seg(SegExt),

    /// hot link to another sequence (a view)
    Ref(RefExt),

    /// ordered map of markers
    Map(MapExt),

    Delta(DeltaExt),
}

impl XmlNode for SeqExt {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-ext")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> where Self: Sized {
        // variants
        let _seg_element = BytesStart::new("Seq-ext_seg");
        let _ref_element = BytesStart::new("Seq-ext_ref");
        let _map_element = BytesStart::new("Seq-ext_map");
        let delta_element = BytesStart::new("Seq-ext_delta");

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == delta_element.name() {
                        return Self::Delta(read_vec_node(reader, delta_element.to_end())).into();
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return None
                    }
                },
                _ => ()
            }
        }
    }
}

pub type SegExt = Vec<SeqLoc>;
pub type RefExt = SeqLoc;
pub type MapExt = Vec<SeqFeat>;
pub type DeltaExt = Vec<DeltaSeq>;

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub enum DeltaSeq {
    /// point to a sequence
    Loc(SeqLoc),

    /// a piece of sequence
    Literal(SeqLiteral),
}

impl XmlNode for DeltaSeq {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Delta-seq")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> where Self: Sized {
        // variant tags
        let loc_variant = BytesStart::new("Delta-seq_loc");
        let _literal_variant = BytesStart::new("Delta-seq_literal");

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == loc_variant.name() {
                        return Self::Loc(read_node(reader).unwrap()).into()
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return None
                    }
                }
                _ => ()
            }
        }
    }
}
impl XmlVecNode for DeltaSeq {}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub struct SeqLiteral {
    /// must give a length in residues
    pub length: u64,

    /// could be unsure
    pub full: Option<IntFuzz>,

    /// may have the data
    pub seq_data: Option<SeqData>,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// internal structure for storing sequence history deletion status
pub enum SeqHistDeleted {
    Bool(bool),
    Date(Date),
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// Sequence history record
/// assembly: records how seq was assembled from others
pub struct SeqHist {
    pub assembly: Option<Vec<SeqAlign>>,
    pub replaces: Option<SeqHistRec>,
    pub replaced_by: Option<SeqHistRec>,
    pub deleted: Option<SeqHistDeleted>,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub struct SeqHistRec {
    pub date: Option<Date>,
    pub ids: Vec<SeqId>,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// Sequence representations
pub enum SeqData {
    /// IUPAC 1 letter nuc acid code
    Ina(IUPACna),

    /// IUPAC 1 letter amino acid code
    Iaa(IUPACaa),

    /// 2 bit nucleic acid code
    N2na(NCBI2na),

    /// 4 bit nucleic acid code
    N4na(NCBI4na),

    /// 8 bit extended nucleic acid code
    N8na(NCBI8na),

    /// nucleic acid probabilities
    NPna(NCBIPna),

    /// 8 bit extended amino acid codes
    N8aa(NCBI8aa),

    /// extended ASCII 1 letter aa codes
    NEaa(NCBIEaa),

    /// amino acid probabilities
    NPaa(NCBIPaa),

    /// consecutive codes for std aa's
    NStdAAs(NCBIStdAa),

    /// gap types
    Gap(SeqGap),
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// internal structure for `type` field in [`SeqGap`]
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum SeqGapType {
    Unknown,
    #[deprecated]
    /// used only for AGP 1.1
    Fragment,
    #[deprecated]
    /// used only for AGP 1.1
    Clone,
    ShortArm,
    Heterochromatin,
    Centromere,
    Telomere,
    Repeat,
    Contig,
    Scaffold,
    Contamination,
    Other = 255,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Internal representation for linkage status for [`SeqGap`]
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum SeqGapLinkage {
    Unlinked,
    Linked,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub struct SeqGap {
    pub r#type: SeqGapType,
    pub linkage: Option<SeqGapLinkage>,
    pub linkage_evidence: Option<Vec<LinkageEvidence>>,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// internal representation for `type` in [`LinkageEvidence`]
pub enum LinkageEvidenceType {
    PairedEnds,
    AlignGenus,
    AlignXGenus,
    AlignTrans,
    WithinClone,
    CloneContig,
    Map,
    Strobe,
    Unspecified,
    PCR,
    ProximityLigation,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub struct LinkageEvidence {
    pub r#type: LinkageEvidenceType,
}

/// IUPAC 1 letter codes, no spaces
pub type IUPACna = String;

/// IUPAC 1 letter codes, no spaces
pub type IUPACaa = String;

/// 00=A, 01=C, 10=G, 11=T
pub type NCBI2na = Vec<u8>;

/// 1 bit for each agct
///
/// 0001=A, 0010=C, 0100=G, 1000=T/U
/// 0101/Purine, 1010=Pyrimidine, etc
pub type NCBI4na = Vec<u8>;

/// For modified nucleic acids
pub type NCBI8na = Vec<u8>;

/// Probabilities for nucleic acid's
///
/// 5 octets/base, prob for a,c,g,t,n
/// Probabilities are coded 0-255 = 0.0-1.0
pub type NCBIPna = Vec<u8>;

/// For modified amino acids
pub type NCBI8aa = Vec<u8>;

/// ASC extended 1 letter aa codes
///
/// IUPAC Codes + U=selenocysteine
pub type NCBIEaa = String;

/// Probabilities for amino acid's
///
/// 25/octets/aa, prob for IUPAC aa's in order:
/// A-Y, B, Z, X, (ter), anything
///
/// Probabilities are coded 0-255 = 0.0-1.0
pub type NCBIPaa = Vec<u8>;

/// NCBI Std AA code
///
/// Codes 0-25, 1 per byte
pub type NCBIStdAa = Vec<u8>;

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
/// This is a replica of [`TextSeqId`]
///
/// This is specific for annotations, and exists to maintain a semantic difference
/// between ID's assigned to annotations and ID's assigned to sequences.
pub struct TextAnnotId {
    pub name: Option<String>,
    pub accession: Option<String>,
    pub release: Option<String>,
    pub version: Option<u64>,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub enum AnnotId {
    Local(ObjectId),
    NCBI(u64),
    General(DbTag),
    Other(TextAnnotId),
}

pub type AnnotDescr = Vec<AnnotDesc>;

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub enum AnnotDesc {
    /// a short name for this collection
    Name(String),
    /// a title for this collection
    Title(String),
    /// a more extensive comment
    Comment(String),
    /// a reference to the publication
    Pub(PubDesc),
    /// user defined object
    User(UserObject),
    /// date entry first created/released
    CreateDate(Date),
    /// date of last update
    UpdateDate(Date),
    /// source sequence from which annot came
    Src(SeqId),
    /// definition of the SeqAligns
    Align(AlignDef),
    /// all contents cover this region
    Region(SeqLoc),
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Internal representation of align type for [`SeqAnnot`]
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum AlignType {
    /// set of alignments to the same sequence
    Ref,
    /// set of alternate alignments of the same seqs
    Alt,
    /// set of aligned blocks in the same seqs
    Blocks,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub struct AlignDef {
    pub align_type: AlignType,
    /// used for the one ref [`SeqId`] for now
    pub ids: Option<Vec<SeqId>>,
}

#[derive(Clone, Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
/// Internal representation of source DB for [`SeqAnnot`]
///
/// # Note
///
/// Original implementation lists this as `INTEGER`, therefore it is assumed that
/// serialized representation is an integer
pub enum SeqAnnotDB {
    GenBank,
    EMBL,
    DDBJ,
    PIR,
    SP,
    BBone,
    PDB,
    Other = 255,
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "lowercase")]
/// Internal representation for `data` choice in [`SeqAnnot`]
pub enum SeqAnnotData {
    FTable(Vec<SeqFeat>),
    Align(Vec<SeqAlign>),
    Graph(Vec<SeqGraph>),

    /// used for communication between tools
    IDS(Vec<SeqId>),

    /// used for communication between tools
    Locs(Vec<SeqLoc>),

    #[serde(rename = "seq-table")]
    /// features in table form
    SeqTable(SeqTable),
}

impl XmlNode for SeqAnnotData {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-annot_data")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> where Self: Sized {
        // variant tags
        let ftable_tag = BytesStart::new("Seq-annot_data_ftable");

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == ftable_tag.name() {
                        return Self::FTable(read_vec_node(reader, ftable_tag.to_end())).into()
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return None
                    }
                }
                _ => ()
            }
        }
    }
}

#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
#[serde(rename_all = "kebab-case")]
pub struct SeqAnnot {
    pub id: Option<Vec<AnnotId>>,
    pub db: Option<SeqAnnotDB>,

    /// source if `db` [`SeqAnnotDB::Other`]
    pub name: Option<String>,

    /// used only for standalone [`SeqAnnot`]'s
    pub desc: Option<AnnotDescr>,

    pub data: SeqAnnotData,
}

impl SeqAnnot {
    /// default not originally in spec
    pub fn default() -> Self {
        Self::new(SeqAnnotData::FTable(vec![]))
    }

    pub fn new(data: SeqAnnotData) -> Self {
        Self {
            id: None,
            db: None,
            name: None,
            desc: None,
            data,
        }
    }
}

impl XmlNode for SeqAnnot {
    fn start_bytes() -> BytesStart<'static> {
        BytesStart::new("Seq-annot")
    }

    fn from_reader(reader: &mut Reader<&[u8]>) -> Option<Self> where Self: Sized {
        let mut annot = SeqAnnot::default();

        // attribute tags
        let data_tag = BytesStart::new("Seq-annot_data");

        let forbidden = UnexpectedTags(&[]);

        loop {
            match reader.read_event().unwrap() {
                Event::Start(e) => {
                    let name = e.name();

                    if name == data_tag.name() {
                        annot.data = read_node(reader).unwrap();
                    } else if name != Self::start_bytes().name() {
                        forbidden.check(&name);
                    }
                }
                Event::End(e) => {
                    if Self::is_end(&e) {
                        return annot.into()
                    }
                }
                _ => ()
            }
        }
    }
}
impl XmlVecNode for SeqAnnot {}