mzident 0.2.1

Handle all kinds of PSM files.
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
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
//! Write mzTab files.
//!
//! The easiest method to use is [`MzTabWriter::write`] which just needs the lists of proteins and
//! PSMs and writes the file in one go. Additionally, it is possible to write the file piecemeal
//! which allows more complex patterns with less memory overhead but needs some more setup on the
//! library users side.

use std::{
    borrow::Cow, fmt::Display, io::Write, marker::PhantomData, num::NonZeroUsize, path::PathBuf,
};

use itertools::Itertools;
#[cfg(feature = "mzdata")]
use mzannotate::mzdata;
use mzcore::{
    chemistry::{AmbiguousMolecule, Molecule},
    ontology::Ontology,
    prelude::{MolecularFormula, SequencePosition},
    sequence::{
        FlankingSequence, IsAminoAcid, Modification, PlacementRule, SimpleModification,
        SimpleModificationInner,
    },
};
use mzcv::{CVIndex, CVSource, Term};
use serde::{Deserialize, Serialize};
use thin_vec::ThinVec;

use crate::{CVTerm, PSMMetaData, ProteinMetaData, SpectrumId, SpectrumIds};

/// Write PSMs as an mzTab file.
#[derive(Debug)]
pub struct MzTabWriter<Writer, State> {
    writer: Writer,
    prh: Option<String>,
    psh: Option<String>,
    metadata: MzTabMetadata,
    state: PhantomData<State>,
}

/// The metadata for an MS run for a mzTab file.
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabMSRun {
    /// The file format terms
    pub format: Option<CVTerm>,
    /// The id format term
    pub id_format: Option<CVTerm>,
    /// The file location
    pub location: PathBuf,
    /// The file hash value
    pub hash: Option<String>,
    /// The file hash method
    pub hash_method: Option<CVTerm>,
    /// The term for the fragmentation method
    pub fragmentation_method: Option<CVTerm>,
}

impl mzcore::space::Space for MzTabMSRun {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.format.space()
            + self.id_format.space()
            + self.location.space()
            + self.hash.space()
            + self.hash_method.space()
            + self.fragmentation_method.space())
        .set_total::<Self>()
    }
}

/// The mzTab file has been started but nothing has been written yet.
#[allow(missing_debug_implementations, missing_copy_implementations)] // Marker ZST
pub struct Initial;
/// The mzTab file has already been written with a header.
#[allow(missing_debug_implementations, missing_copy_implementations)] // Marker ZST
pub struct HeaderWritten;
/// The mzTab file has already been written with a header and proteins.
#[allow(missing_debug_implementations, missing_copy_implementations)] // Marker ZST
pub struct ProteinsWritten;
/// The mzTab file has already been written with a header and proteins and PSMs.
#[allow(missing_debug_implementations, missing_copy_implementations)] // Marker ZST
pub struct PSMsWritten;

/// A private trait to make sure that no dependency can overwrite the state machine traits
trait Sealed {}
impl Sealed for HeaderWritten {}
impl Sealed for ProteinsWritten {}
impl Sealed for PSMsWritten {}

/// A trait to help indicate when proteins can be written
#[allow(private_bounds)] // Sealed to make sure the guarentees stays intact
pub trait CanWriteProteins: Sealed {}
impl CanWriteProteins for HeaderWritten {}
impl CanWriteProteins for ProteinsWritten {}

/// A trait to help indicate when PSMs can be written
#[allow(private_bounds)] // Sealed to make sure the guarentees stays intact
pub trait CanWritePSMs: Sealed {}
impl CanWritePSMs for HeaderWritten {}
impl CanWritePSMs for ProteinsWritten {}
impl CanWritePSMs for PSMsWritten {}

impl<W: Write> MzTabWriter<W, Initial> {
    /// Convenience function to easily write all information to an mzTab file.
    /// An [`MSRun`] has to be given for all PSMs that are [`SpectrumIds::FileNotKnown`] to still
    /// point to the correct location.
    /// # Errors
    /// If writing to the underlying writer failed.
    pub fn write<PSM: PSMMetaData>(
        writer: W,
        mut header: MzTabMetadata,
        psms: &[PSM],
        unknown_file_run: MzTabMSRun,
    ) -> Result<(), std::io::Error> {
        let mut unknown = false;
        for run in psms
            .iter()
            .flat_map(|p| match p.scans() {
                SpectrumIds::FileKnown(scans) => scans,
                SpectrumIds::FileNotKnown(_) => {
                    unknown = true;
                    Vec::new()
                }
                SpectrumIds::None => Vec::new(),
            })
            .map(|(p, _)| p)
            .unique()
        {
            if !header.ms_runs.iter().any(|r| r.location == run) {
                header.ms_runs.push(MzTabMSRun {
                    location: run,
                    format: None,
                    id_format: None,
                    hash: None,
                    hash_method: None,
                    fragmentation_method: None,
                });
            }
        }
        let proteins = psms
            .iter()
            .flat_map(|p| p.proteins().into_owned())
            .unique_by(|p| p.id().accession().to_string())
            .collect::<Vec<PSM::Protein>>();
        if unknown {
            header.ms_runs.push(unknown_file_run);
        }
        header.protein_search_engines.extend(
            proteins
                .iter()
                .flat_map(ProteinMetaData::search_engine)
                .filter_map(|p| p.1.as_ref().map(|(_, t)| t.term.clone().into()))
                .unique(),
        );
        header.psm_search_engines.extend(
            psms.iter()
                .filter_map(|p| p.original_confidence().map(|(_, t)| t.into()))
                .unique(),
        );
        let writer = Self::new(writer, header);
        let writer = writer.write_header()?;
        let highest_used_id =
            psms.iter().filter_map(PSMMetaData::numerical_id).max().unwrap_or_default();
        if proteins.is_empty() {
            writer.write_psms(psms, highest_used_id, &[])?;
        } else {
            let writer = writer.write_proteins(&proteins, &[])?;
            writer.write_psms(psms, highest_used_id, &[])?;
        }
        Ok(())
    }

    /// Create a new mzTab file writer that will output to the given writer and with the given MS
    /// runs.
    pub const fn new(writer: W, header: MzTabMetadata) -> Self {
        Self {
            writer,
            prh: None,
            psh: None,
            metadata: header,
            state: PhantomData,
        }
    }

    /// Write the header. Adds the standard mzTab version, mode, and type headers and writes all
    /// keys for the [`MSRun`]s. All other keys can be added as a tuple of (key, value).
    /// # Errors
    /// If the underlying writer fails.
    pub fn write_header(mut self) -> Result<MzTabWriter<W, HeaderWritten>, std::io::Error> {
        writeln!(self.writer, "MTD\tmzTab-version\t1.0.0")?;
        writeln!(
            self.writer,
            "MTD\tmzTab-mode\t{}",
            match self.metadata.mode {
                MzTabMode::Summary => "Summary",
                MzTabMode::Complete => "Complete",
            }
        )?;
        writeln!(
            self.writer,
            "MTD\tmzTab-type\t{}",
            match self.metadata.kind {
                MzTabKind::Identification => "Identification",
                MzTabKind::Quantification => "Quantification",
            }
        )?;

        if !self.metadata.id.is_empty() {
            writeln!(self.writer, "MTD\tmzTab-ID\t{}", self.metadata.id)?;
        }
        if !self.metadata.title.is_empty() {
            writeln!(self.writer, "MTD\ttitle\t{}", self.metadata.title)?;
        }
        if !self.metadata.description.is_empty() {
            writeln!(
                self.writer,
                "MTD\tdescription\t{}",
                self.metadata.description
            )?;
        }
        for (i, terms) in self.metadata.sample_processing.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tsample_processing[{i}]\t{}",
                terms.iter().join("|"),
            )?;
        }
        for (i, instrument) in self.metadata.instruments.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tinstrument[{i}]-name\t{}",
                instrument.name
            )?;
            writeln!(
                self.writer,
                "MTD\tinstrument[{i}]-source\t{}",
                instrument.source
            )?;
            for (j, analyser) in instrument.analyser.iter().enumerate() {
                let j = j + 1;
                writeln!(
                    self.writer,
                    "MTD\tinstrument[{i}]-analyzer[{j}]\t{analyser}",
                )?;
            }
            writeln!(
                self.writer,
                "MTD\tinstrument[{i}]-detector\t{}",
                instrument.detector
            )?;
        }
        for (i, software) in self.metadata.software.iter().enumerate() {
            let i = i + 1;
            writeln!(self.writer, "MTD\tsoftware[{i}]\t{}", software.name)?;
            for (j, setting) in software.settings.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tsoftware[{i}]-setting[{j}]\t{setting}")?;
            }
        }
        if !self.metadata.false_discovery_rate.is_empty() {
            writeln!(
                self.writer,
                "MTD\tfalse_discovery_rate\t{}",
                self.metadata.false_discovery_rate.iter().join("|"),
            )?;
        }
        for (i, publication) in self.metadata.publication.iter().enumerate() {
            let i = i + 1;
            writeln!(self.writer, "MTD\tpublication[{i}]\t{publication}")?;
        }
        for (i, contact) in self.metadata.contact.iter().enumerate() {
            let i = i + 1;
            if !contact.name.is_empty() {
                writeln!(self.writer, "MTD\tcontact[{i}]-name\t{}", contact.name)?;
            }
            if !contact.affiliation.is_empty() {
                writeln!(
                    self.writer,
                    "MTD\tcontact[{i}]-affiliation\t{}",
                    contact.affiliation
                )?;
            }
            if !contact.email.is_empty() {
                writeln!(self.writer, "MTD\tcontact[{i}]-email\t{}", contact.email)?;
            }
        }
        for (i, uri) in self.metadata.uri.iter().enumerate() {
            writeln!(self.writer, "MTD\turi[{i}]\t{uri}")?;
        }
        for (i, m) in self.metadata.fixed_mods.iter().enumerate() {
            write_mod(&mut self.writer, &format!("MTD\tfixed_mod[{i}]"), m)?;
        }
        for (i, m) in self.metadata.variable_mods.iter().enumerate() {
            write_mod(&mut self.writer, &format!("MTD\tvariable_mod[{i}]"), m)?;
        }
        if let Some(term) = &self.metadata.quantification_method {
            writeln!(self.writer, "MTD\tquantification_method\t{term}")?;
        }
        if let Some(term) = &self.metadata.protein_quantification_unit {
            writeln!(self.writer, "MTD\tprotein_quantification_unit\t{term}")?;
        }
        for (i, run) in self.metadata.ms_runs.iter().enumerate() {
            let i = i + 1; // 1 based
            if let Some(format) = &run.format {
                writeln!(self.writer, "MTD\tms_run[{i}]-format\t{format}")?;
            }
            if let Some(id_format) = &run.id_format {
                writeln!(self.writer, "MTD\tms_run[{i}]-id_format\t{id_format}")?;
            }
            writeln!(
                self.writer,
                "MTD\tms_run[{i}]-location\t{}{}",
                if run.location.is_absolute() {
                    "file://"
                } else {
                    ""
                },
                run.location.display()
            )?;
            if let Some(term) = &run.hash_method {
                writeln!(self.writer, "MTD\tms_run[{i}]-hash_method\t{term}")?;
            }
            if let Some(value) = &run.hash {
                writeln!(self.writer, "MTD\tms_run[{i}]-hash\t{value}")?;
            }
            if let Some(term) = &run.fragmentation_method {
                writeln!(self.writer, "MTD\tms_run[{i}]-fragmentation_method\t{term}")?;
            }
        }
        for (i, search_engine) in self.metadata.protein_search_engines.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tprotein_search_engine_score[{i}]\t{search_engine}",
            )?;
        }
        for (i, search_engine) in self.metadata.psm_search_engines.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tpsm_search_engine_score[{i}]\t{search_engine}",
            )?;
        }
        for (i, sample) in self.metadata.sample.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tsample[{i}]-description\t{}",
                sample.description
            )?;
            for (j, species) in sample.species.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tsample[{i}]-species[{j}]\t{species}")?;
            }
            for (j, tissue) in sample.tissue.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tsample[{i}]-tissue[{j}]\t{tissue}")?;
            }
            for (j, cell_type) in sample.cell_type.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tsample[{i}]-cell_type[{j}]\t{cell_type}")?;
            }
            for (j, disease) in sample.disease.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tsample[{i}]-disease[{j}]\t{disease}")?;
            }
            for (j, custom) in sample.custom.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tsample[{i}]-custom[{j}]\t{custom}")?;
            }
        }
        for (i, assay) in self.metadata.assay.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tassay[{i}]-quantification_reagent\t{}",
                assay.quantification_reagent
            )?;
            for (j, m) in assay.quantification_mod.iter().enumerate() {
                let j = j + 1;
                writeln!(self.writer, "MTD\tassay[{i}]-quantification_mod[{j}]\t{m}")?;
            }
            if let Some(r) = assay.sample_ref {
                writeln!(self.writer, "MTD\tassay[{i}]-sample_ref\tsample[{r}]")?;
            }
            if let Some(r) = assay.ms_run_ref {
                writeln!(self.writer, "MTD\tassay[{i}]-ms_run_ref\tms_run[{r}]")?;
            }
        }
        for (i, study_variable) in self.metadata.study_variable.iter().enumerate() {
            let i = i + 1;
            writeln!(
                self.writer,
                "MTD\tstudy_variable[{i}]-description\t{}",
                study_variable.description
            )?;
            if !study_variable.assay_refs.is_empty() {
                writeln!(
                    self.writer,
                    "MTD\tstudy_variable[{i}]-assay_refs\t{}",
                    study_variable.assay_refs.iter().map(|a| format!("assay[{a}]")).join(",")
                )?;
            }
            if !study_variable.sample_refs.is_empty() {
                writeln!(
                    self.writer,
                    "MTD\tstudy_variable[{i}]-sample_refs\t{}",
                    study_variable.sample_refs.iter().map(|a| format!("sample[{a}]")).join(",")
                )?;
            }
        }
        for (i, cv) in self.metadata.cv.iter().enumerate() {
            let i = i + 1;
            if !cv.label.is_empty() {
                writeln!(self.writer, "MTD\tcv[{i}]-label\t{}", cv.label)?;
            }
            if !cv.full_name.is_empty() {
                writeln!(self.writer, "MTD\tcv[{i}]-full_name\t{}", cv.full_name)?;
            }
            if !cv.url.is_empty() {
                writeln!(self.writer, "MTD\tcv[{i}]-url\t{}", cv.url)?;
            }
            if !cv.version.is_empty() {
                writeln!(self.writer, "MTD\tcv[{i}]-version\t{}", cv.version)?;
            }
        }
        for (col, param) in &self.metadata.colunit_protein {
            writeln!(self.writer, "MTD\tcolunit-protein\t{col}={param}")?;
        }
        writeln!(
            self.writer,
            "MTD\tcolunit-psm\tretention_time=[UO,UO:0000010,second,]"
        )?;
        for (col, param) in &self.metadata.colunit_psm {
            writeln!(self.writer, "MTD\tcolunit-psm\t{col}={param}")?;
        }
        for (i, custom) in self.metadata.custom.iter().enumerate() {
            let i = i + 1;
            writeln!(self.writer, "MTD\tcustom[{i}]\t{custom}")?;
        }
        writeln!(self.writer)?;
        Ok(MzTabWriter {
            writer: self.writer,
            prh: self.prh,
            psh: self.psh,
            metadata: self.metadata,
            state: PhantomData,
        })
    }
}

/// The mode for an mzTab file
#[derive(Clone, Copy, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub enum MzTabMode {
    /// Summary mode
    #[default]
    Summary,
    /// Complete mode
    Complete,
}

impl mzcore::space::Space for MzTabMode {
    fn space(&self) -> mzcore::space::UsedSpace {
        mzcore::space::UsedSpace::stack(1).set_total::<Self>()
    }
}

/// The kind/type for an mzTab file
#[derive(Clone, Copy, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub enum MzTabKind {
    /// Identification type
    #[default]
    Identification,
    /// Quantification type
    Quantification,
}

impl mzcore::space::Space for MzTabKind {
    fn space(&self) -> mzcore::space::UsedSpace {
        mzcore::space::UsedSpace::stack(1).set_total::<Self>()
    }
}

/// Define the name for an optional column in an mzTab file
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabMetadata {
    /// The mode of the file
    pub mode: MzTabMode,
    /// The kind (or type) of the file
    pub kind: MzTabKind,
    /// An ID for the file
    pub id: Box<str>,
    /// A human readable title
    pub title: Box<str>,
    /// A human readable description
    pub description: Box<str>,
    /// The fixed modifications that where searched for
    pub fixed_mods: ThinVec<SimpleModification>,
    /// The variable modifications that where searched for
    pub variable_mods: ThinVec<SimpleModification>,
    /// Defines quantification method used in the file
    pub quantification_method: Option<CVTerm>,
    /// Defines the unit in the protein quantification field
    pub protein_quantification_unit: Option<CVTerm>,
    /// The software used to analyse the data
    pub software: ThinVec<MzTabSoftware>,
    /// The sample processing steps these should be defined in chronological order
    pub sample_processing: ThinVec<Vec<CVTerm>>,
    /// The instruments used in this file
    pub instruments: ThinVec<MzTabInstrument>,
    /// The false discovery rates used together with a term identifying the exact method.
    pub false_discovery_rate: ThinVec<CVTerm>,
    /// Publications associated with this file. PubMed ids must be prefixed with 'pubmed:', DOIs
    /// with 'doi:' and identifiers can be separated with '|'.
    pub publication: ThinVec<Box<str>>,
    /// Any contacts for the file
    pub contact: ThinVec<MzTabContact>,
    /// URIs to point to the file source data, eg from PRIDE or PeptideAtlas
    pub uri: ThinVec<Box<str>>,
    /// Any additional custom parameters
    pub custom: ThinVec<CVTerm>,
    /// Define the biological samples
    pub sample: ThinVec<MzTabSample>,
    /// Define the study variables
    pub study_variable: ThinVec<MzTabStudyVariable>,
    /// Define the assays
    pub assay: ThinVec<MzTabAssay>,
    /// Define which CVs are used in the file
    pub cv: ThinVec<MzTabCV>,
    /// Define the unit for a custom protein column
    pub colunit_protein: ThinVec<(MzTabColumn, CVTerm)>,
    /// Define the unit for a custom PSM column
    pub colunit_psm: ThinVec<(MzTabColumn, CVTerm)>,
    /// The MS runs
    pub ms_runs: ThinVec<MzTabMSRun>,
    /// The protein search engines
    pub protein_search_engines: ThinVec<CVTerm>,
    /// The PSM search engines
    pub psm_search_engines: ThinVec<CVTerm>,
}

impl mzcore::space::Space for MzTabMetadata {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.mode.space()
            + self.kind.space()
            + self.id.space()
            + self.title.space()
            + self.description.space()
            + self.fixed_mods.space()
            + self.variable_mods.space()
            + self.quantification_method.space()
            + self.protein_quantification_unit.space()
            + self.software.space()
            + self.sample_processing.space()
            + self.instruments.space()
            + self.false_discovery_rate.space()
            + self.publication.space()
            + self.contact.space()
            + self.uri.space()
            + self.custom.space()
            + self.sample.space()
            + self.study_variable.space()
            + self.assay.space()
            + self.cv.space()
            + self.colunit_protein.space()
            + self.colunit_psm.space()
            + self.ms_runs.space()
            + self.protein_search_engines.space()
            + self.psm_search_engines.space())
        .set_total::<Self>()
    }
}

/// Define an instrument for an mzTab file
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabCV {
    /// What is the label (start of a CURIE) for this CV
    pub label: Box<str>,
    /// What is the full name of the CV
    pub full_name: Box<str>,
    /// What is the version of the CV
    pub version: Box<str>,
    /// Where can the CV be found
    pub url: Box<str>,
}

impl<T: CVSource> From<&CVIndex<T>> for MzTabCV {
    fn from(value: &CVIndex<T>) -> Self {
        Self {
            label: T::cv_label().into(),
            full_name: T::cv_name().into(),
            version: value
                .version()
                .version
                .as_ref()
                .map(|v| v.clone().into_boxed_str())
                .unwrap_or_default(),
            url: T::files().iter().find_map(|f| f.url).unwrap_or_default().into(),
        }
    }
}

impl mzcore::space::Space for MzTabCV {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.label.space() + self.full_name.space() + self.version.space() + self.url.space())
            .set_total::<Self>()
    }
}

/// Define an instrument for an mzTab file
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabContact {
    /// The name, has to be provided in first name + initials + last name eg: Joseph J. Thomson
    pub name: Box<str>,
    /// The affiliation
    pub affiliation: Box<str>,
    /// The email
    pub email: Box<str>,
}

impl mzcore::space::Space for MzTabContact {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.name.space() + self.affiliation.space() + self.email.space()).set_total::<Self>()
    }
}

/// Define an instrument for an mzTab file
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabSoftware {
    /// The software and its version
    pub name: CVTerm,
    /// Any settings for this software
    pub settings: ThinVec<String>,
}

impl mzcore::space::Space for MzTabSoftware {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.name.space() + self.settings.space()).set_total::<Self>()
    }
}

/// Define an instrument for an mzTab file
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabInstrument {
    /// The instrument itself eg: `MS:1000449|LTQ Orbitrap`
    pub name: CVTerm,
    /// The source eg: `MS:1000073|ESI`
    pub source: CVTerm,
    /// The analyser(s) eg: `MS:1000291|linear ion trap`
    pub analyser: Vec<CVTerm>,
    /// The detector type eg `MS:1000253|electron multiplier`
    pub detector: CVTerm,
}

impl mzcore::space::Space for MzTabInstrument {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.name.space() + self.source.space() + self.analyser.space() + self.detector.space())
            .set_total::<Self>()
    }
}

/// Define a sample for an mzTab file
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabSample {
    /// The species of the sample
    pub species: ThinVec<CVTerm>,
    /// The tissues of the sample
    pub tissue: ThinVec<CVTerm>,
    /// The cell types of the sample
    pub cell_type: ThinVec<CVTerm>,
    /// The diseases of the sample
    pub disease: ThinVec<CVTerm>,
    /// Human readable description
    pub description: Box<str>,
    /// Any additional properties
    pub custom: ThinVec<CVTerm>,
}

impl mzcore::space::Space for MzTabSample {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.species.space()
            + self.tissue.space()
            + self.cell_type.space()
            + self.disease.space()
            + self.description.space()
            + self.custom.space())
        .set_total::<Self>()
    }
}

/// Define a study variable for an mzTab file
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabStudyVariable {
    /// Which samples make up this study variable
    pub sample_refs: ThinVec<NonZeroUsize>,
    /// Which assays make up this study variable
    pub assay_refs: ThinVec<NonZeroUsize>,
    /// Human textual description of the variable
    pub description: Box<str>,
}

impl mzcore::space::Space for MzTabStudyVariable {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.sample_refs.space() + self.assay_refs.space() + self.description.space())
            .set_total::<Self>()
    }
}

/// Define an assay for an mzTab file
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct MzTabAssay {
    /// Which modifications where used for quantification
    pub quantification_mod: ThinVec<CVTerm>,
    /// Which sample is associated with this assay
    pub sample_ref: Option<NonZeroUsize>,
    /// Which MS run is associated with this assay
    pub ms_run_ref: Option<NonZeroUsize>,
    /// What quantification reagent was used, if not labelled `MS:1002038|unlabeled sample` should
    /// be used
    pub quantification_reagent: CVTerm,
}

impl Default for MzTabAssay {
    fn default() -> Self {
        Self {
            quantification_reagent: mzcv::term!(MS:1002038|unlabeled sample).into(),
            quantification_mod: ThinVec::new(),
            sample_ref: None,
            ms_run_ref: None,
        }
    }
}

impl mzcore::space::Space for MzTabAssay {
    fn space(&self) -> mzcore::space::UsedSpace {
        (self.quantification_mod.space()
            + self.sample_ref.space()
            + self.ms_run_ref.space()
            + self.quantification_reagent.space())
        .set_total::<Self>()
    }
}

/// Define the name a column in an mzTab file
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub enum MzTabColumn {
    /// A defined column
    Defined(Cow<'static, str>),
    /// An optional column
    Optional(MzTabObjectIdentifier, MzTabOptionalColumnName),
}

impl Display for MzTabColumn {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Defined(n) => write!(f, "{n}"),
            Self::Optional(i, n) => write!(f, "opt_{i}_{n}"),
        }
    }
}

impl mzcore::space::Space for MzTabColumn {
    fn space(&self) -> mzcore::space::UsedSpace {
        match self {
            Self::Defined(t) => t.space(),
            Self::Optional(i, n) => i.space() + n.space(),
        }
        .set_total::<Self>()
    }
}

impl std::str::FromStr for MzTabColumn {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if let Some(tail) = s.strip_prefix("opt_") {
            let Some((id, name)) = tail.split_once('_') else {
                return Err(());
            };
            let id = match id.split_once('[').and_then(|(t, n)| {
                n.strip_suffix(']')
                    .and_then(|n| n.parse::<NonZeroUsize>().ok())
                    .map(|n| (t, n))
            }) {
                Some(("assay", num)) => MzTabObjectIdentifier::Assay(num),
                Some(("ms_run", num)) => MzTabObjectIdentifier::MSRun(num),
                Some(("study_variable", num)) => MzTabObjectIdentifier::StudyVariable(num),
                None if id == "global" => MzTabObjectIdentifier::Global,
                _ => return Err(()),
            };

            Ok(Self::Optional(
                id,
                Term::from_str(name).map_or_else(
                    |_| MzTabOptionalColumnName::Name(Cow::Owned(name.to_string())),
                    MzTabOptionalColumnName::Term,
                ),
            ))
        } else {
            Ok(Self::Defined(Cow::Owned(s.to_string())))
        }
    }
}

/// Define the name for an optional column in an mzTab file
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub enum MzTabOptionalColumnName {
    /// A term from a CV
    Term(Term),
    /// A free text name
    Name(Cow<'static, str>),
}

impl mzcore::space::Space for MzTabOptionalColumnName {
    fn space(&self) -> mzcore::space::UsedSpace {
        match self {
            Self::Term(t) => t.space(),
            Self::Name(n) => n.space(),
        }
        .set_total::<Self>()
    }
}

impl Display for MzTabOptionalColumnName {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        /// Print a name while replacing any invalid character.
        /// # Errors
        /// If writing to the writer fails.
        fn print_safe(name: &str, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            for c in name.chars() {
                if c.is_ascii_alphanumeric() || ['_', '-', '[', ']', ':'].contains(&c) {
                    write!(f, "{c}")?;
                } else {
                    f.write_str("_")?;
                }
            }

            Ok(())
        }
        match self {
            Self::Term(term) => {
                write!(f, "{}_{}_", term.accession.cv, term.accession.accession)?;
                print_safe(&term.name, f)
            }
            Self::Name(name) => print_safe(name, f),
        }
    }
}

/// An object identifier for an mzTab optional column
#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize)]
pub enum MzTabObjectIdentifier {
    /// An assay, with the assay id
    Assay(NonZeroUsize),
    /// A study variable, with the id
    StudyVariable(NonZeroUsize),
    /// An MS run, with the id
    MSRun(NonZeroUsize),
    /// A global optional column
    Global,
}

impl mzcore::space::Space for MzTabObjectIdentifier {
    fn space(&self) -> mzcore::space::UsedSpace {
        match self {
            Self::Assay(t) => t.space(),
            Self::StudyVariable(n) | Self::MSRun(n) => n.space(),
            Self::Global => mzcore::space::UsedSpace::stack(8),
        }
        .set_total::<Self>()
    }
}

impl Display for MzTabObjectIdentifier {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Assay(i) => write!(f, "assay[{i}]"),
            Self::StudyVariable(i) => write!(f, "study_variable[{i}]"),
            Self::MSRun(i) => write!(f, "msrun[{i}]"),
            Self::Global => write!(f, "global"),
        }
    }
}

/// An optional column that contains the information needed to create the column name and the write
/// the values.
pub type MzTabOptionalColumn<'a, P, W> = (
    MzTabOptionalColumnName,
    MzTabObjectIdentifier,
    Box<dyn Fn(&P, &mut W) -> Result<(), std::io::Error> + 'a>,
);

impl<W: Write, State: CanWriteProteins> MzTabWriter<W, State> {
    /// Write the proteins. This can only be done if the header is already written or if some
    /// proteins where written just before. If proteins where already written before and the custom
    /// columns differed this will result in an error.
    ///
    /// To write custom columns for the proteins these need to be defined with the name and
    /// identifier to create the correct column name and with a type erased closure. The closure
    /// gets direct access to the underlying writer to prevent unnecessary allocations. This means
    /// that the closure is expected to write a valid value. The value has to be the value for only
    /// this column excluding separators. If the value contains separators inside, it should be
    /// escaped or encased by the closure itself.
    ///
    /// # Errors
    /// If the underlying writer fails. Or if proteins where previously already written with
    /// different custom columns.
    pub fn write_proteins<Protein: ProteinMetaData>(
        mut self,
        proteins: impl IntoIterator<Item = Protein>,
        custom_columns: &[MzTabOptionalColumn<Protein, W>],
    ) -> Result<MzTabWriter<W, ProteinsWritten>, std::io::Error> {
        let prh = format!(
            "PRH\taccession\tdescription\ttaxid\tspecies\tdatabase\tdatabase_version\tsearch_engine\tambiguity_members\tmodifications\tprotein_coverage\tgo_terms\treliability\turi{}",
            custom_columns
                .iter()
                .map(|(term, id, _)| format!("\topt_{id}_{term}"))
                .join(""),
        );
        if self.prh.is_none() {
            writeln!(self.writer, "{prh}")?;
        } else if self.prh.as_ref().is_some_and(|written| *written != prh) {
            return Err(std::io::Error::other(
                "A different header is already written",
            ));
        }
        for protein in proteins {
            // TODO: think about how to handle dynamic numbers of search engine scores
            // TODO: think about how to handle mod locations
            write!(
                self.writer,
                "PRT\t{}\t{}\t{}\t{}\t{}\t{}\t{}\t{}\t{}\t{}\t{}\t{}\t{}",
                protein.id().accession(),
                protein.description().map_or("null", |t| t),
                protein
                    .species()
                    .map_or_else(|| "null".to_string(), |t| t.accession.to_string()),
                protein.species_name().map_or("null", |t| t),
                protein.database().map_or(Cow::Borrowed("null"), |t| t.0),
                protein
                    .database()
                    .and_then(|d| d.1)
                    .map_or(Cow::Borrowed("null"), |t| t),
                protein.search_engine().iter().map(|(term, _)| term).join("|"),
                protein.ambiguity_members().join(","),
                protein
                    .modifications()
                    .iter()
                    .map(|(locations, m)| if locations.is_empty() {
                        make_mztab_mod(m)
                    } else {
                        format!(
                            "{}-{}",
                            locations
                                .iter()
                                .map(|(l, score)| {
                                    let i = match l {
                                        SequencePosition::NTerm => 0,
                                        SequencePosition::Index(i, _) => 1 + i,
                                        SequencePosition::CTerm => usize::MAX,
                                    };
                                    score.as_ref().map_or_else(
                                        || i.to_string(),
                                        |score| format!("{i}[MS, MS:1001876, modification probability, {score}]"),
                                    )
                                })
                                .join("|"),
                            make_mztab_mod(m)
                        )
                    })
                    .join(","),
                protein.coverage().map_or_else(|| "null".to_string(), |c| c.to_string()),
                protein.gene_ontology().iter().join("|"),
                match protein.reliability() {
                    Some(crate::Reliability::High) => "1",
                    Some(crate::Reliability::Medium) => "2",
                    Some(crate::Reliability::Poor) => "3",
                    None => "null",
                },
                protein.uri().map_or("null", |t| t),
            )?;
            for (_, _, col) in custom_columns {
                write!(self.writer, "\t")?;
                col(&protein, &mut self.writer)?;
            }
            writeln!(self.writer)?;
        }
        writeln!(self.writer)?;
        Ok(MzTabWriter {
            writer: self.writer,
            prh: Some(prh),
            psh: self.psh,
            metadata: self.metadata,
            state: PhantomData,
        })
    }
}

fn write_mod(
    mut w: impl Write,
    prefix: &str,
    m: &SimpleModificationInner,
) -> Result<(), std::io::Error> {
    writeln!(w, "{prefix}\t{}", make_mztab_mod_param(m))?;
    if let SimpleModificationInner::Database { specificities, .. } = m {
        let sites = specificities
            .iter()
            .flat_map(|r| &r.0)
            .flat_map(|r| match r {
                PlacementRule::AminoAcid(aa, _) => aa.iter().map(ToString::to_string).collect(),
                PlacementRule::PsiModification(i, _) => vec![format!("MOD:{i}")],
                PlacementRule::Position(term) => vec![term.to_string()],
            })
            .unique()
            .join(", ");
        if !sites.is_empty() {
            writeln!(w, "{prefix}-site\t{sites}")?;
        }
        let position = specificities
            .iter()
            .flat_map(|r| &r.0)
            .map(|r| match r {
                PlacementRule::AminoAcid(_, pos)
                | PlacementRule::PsiModification(_, pos)
                | PlacementRule::Position(pos) => pos.to_string(),
            })
            .unique()
            .join(", ");
        if !position.is_empty() {
            writeln!(w, "{prefix}-position\t{position}")?;
        }
    }
    Ok(())
}

fn make_mztab_mod_param(m: &SimpleModificationInner) -> String {
    match m {
        SimpleModificationInner::Database { formula, id, .. } => match id.ontology {
            Ontology::Unimod => format!("[UNIMOD,UNIMOD:{},{},]", id.id(), id.name),
            Ontology::Psimod => format!("[MOD,MOD:{},{},]", id.id(), id.name),
            _ => format!(
                "[CHEMMOD,{},{},{}:{}]",
                mztab_chemmod(formula),
                id.name,
                id.ontology,
                id.id()
            ),
        },
        _ => format!("[CHEMMOD,{},,]", mztab_chemmod(&m.formula())),
    }
}

fn make_mztab_mod(m: &SimpleModificationInner) -> String {
    match m {
        SimpleModificationInner::Database { formula, id, .. } => match id.ontology {
            Ontology::Unimod => format!("UNIMOD:{}", id.id()),
            Ontology::Psimod => format!("MOD:{}", id.id()),
            _ => mztab_chemmod(formula),
        },
        _ => mztab_chemmod(&m.formula()),
    }
}

fn mztab_chemmod(f: &MolecularFormula) -> String {
    if f.additional_mass() == 0.0 {
        format!("CHEMMOD:+{}", f.hill_notation_core())
    } else {
        format!("CHEMMOD:{:+}", f.monoisotopic_mass().value)
    }
}

/// An error returned when writing a mzTab file
#[derive(Debug)]
pub enum MzTabWriteError {
    /// An IO error, meaning that writing to the underlying writer failed
    IO(std::io::Error),
    /// A formatting error, meaning that writing to a string did not work
    Fmt(std::fmt::Error),
    /// No [`MSRun`] is written in the header for this file, or if None there are no files and a
    /// [`SpectrumIds::FileNotKnown`] is given
    MissingMSRun(Option<PathBuf>),
    /// This PSM search engine term is not written in the header for this file
    MissingSearchEngine(Term),
    /// PSMs were already written before but the custom columns definition is different
    MultipleDifferentPSMHeaders,
}

impl From<std::io::Error> for MzTabWriteError {
    fn from(value: std::io::Error) -> Self {
        Self::IO(value)
    }
}

impl From<std::fmt::Error> for MzTabWriteError {
    fn from(value: std::fmt::Error) -> Self {
        Self::Fmt(value)
    }
}

impl From<MzTabWriteError> for std::io::Error {
    fn from(value: MzTabWriteError) -> Self {
        match value {
            MzTabWriteError::IO(err) => err,
            a => Self::other(a),
        }
    }
}

impl Display for MzTabWriteError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::IO(err) => write!(f, "{err}"),
            Self::Fmt(err) => write!(f, "{err}"),
            Self::MissingMSRun(None) => {
                write!(f, "Missing MS run for raw file without a defined path")
            }
            Self::MissingMSRun(Some(run)) => write!(f, "Missing MS run: {}", run.display()),
            Self::MissingSearchEngine(engine) => {
                write!(
                    f,
                    "Missing search engine: {}|{}",
                    engine.accession, engine.name
                )
            }
            Self::MultipleDifferentPSMHeaders => {
                write!(f, "A different PSM header is already written")
            }
        }
    }
}

impl std::error::Error for MzTabWriteError {}

impl<W: Write, State: CanWritePSMs> MzTabWriter<W, State> {
    /// Write the given list of PSMs to this mzTab file. It will take as much information as
    /// possible via the [`MetaData`] trait. Any cross-linked peptides (inter and intra) are
    /// ignored as these cannot be written in mzTab. Any chimeric peptidoforms are written on
    /// separate lines. Any [`SpectrumId::RetentionTime`] ids are ignored as these cannot be stored
    /// in mzTab.
    ///
    /// This can only be done if the header is already written. It can be done with and without
    /// any proteins written, and if some PSMs are already written.
    ///
    /// # Errors
    /// * If writing to the underlying writer failed.
    /// * If writing to a string for formatting failed (not expected as formatting is seen as
    ///   infallible see [`std::fmt::Error`]).
    /// * If a spectrum is referenced that is not defined as a [`MSRun`].
    pub fn write_psms<PSM: PSMMetaData>(
        mut self,
        psms: impl IntoIterator<Item = PSM>,
        mut highest_used_id: usize,
        custom_columns: &[MzTabOptionalColumn<PSM, W>],
    ) -> Result<MzTabWriter<W, PSMsWritten>, MzTabWriteError> {
        let psh = format!(
            "PSH\tsequence\tPSM_ID\taccession\tunique\tdatabase\tdatabase_version\tsearch_engine\t{}\tmodifications\tspectra_ref\tretention_time\tcharge\texp_mass_to_charge\tcalc_mass_to_charge\tpre\tpost\tstart\tend\treliability\turi\topt_global_{}{}",
            (1..=self.metadata.psm_search_engines.len())
                .map(|i| format!("search_engine_score[{i}]"))
                .join("\t"),
            MzTabOptionalColumnName::Term(mzcv::term!(MS:1003984|amino acid confidence level)),
            custom_columns
                .iter()
                .map(|(term, id, _)| format!("\topt_{id}_{term}"))
                .join(""),
        );
        if self.psh.is_none() {
            writeln!(self.writer, "{psh}")?;
        } else if self.psh.as_ref().is_some_and(|written| *written != psh) {
            return Err(MzTabWriteError::MultipleDifferentPSMHeaders);
        }
        for psm in psms {
            let mut first_peptidoform = true;
            for peptidoform_ion in
                psm.peptidoform_ion_set().iter().flat_map(|p| p.peptidoform_ions())
            {
                if let Some(peptidoform) =
                    peptidoform_ion.singular_ref().and_then(|p| p.as_linear())
                {
                    let mut mods = String::new();
                    let mut ambiguous =
                        vec![(None, Vec::new()); peptidoform.get_ambiguous_modifications().len()];
                    let mut first_mod = true;

                    for (p, s) in peptidoform.iter(..) {
                        let i = match p.sequence_index {
                            SequencePosition::NTerm => 0,
                            SequencePosition::Index(i, _) => 1 + i,
                            SequencePosition::CTerm => p.sequence_length + 1,
                        };
                        for m in &s.modifications {
                            match m {
                                Modification::CrossLink { .. } => (), //skip
                                Modification::Ambiguous {
                                    id,
                                    modification,
                                    localisation_score,
                                    ..
                                } => {
                                    if ambiguous[*id].0.is_none() {
                                        ambiguous[*id].0 = Some(make_mztab_mod(modification));
                                    }
                                    ambiguous[*id].1.push((i, *localisation_score));
                                }
                                Modification::Simple(m) => {
                                    use std::fmt::Write;
                                    if first_mod {
                                        first_mod = false;
                                    } else {
                                        mods.push(',');
                                    }
                                    write!(mods, "{i}-{}", make_mztab_mod(m))?;
                                }
                            }
                        }
                    }

                    for (m, locations) in ambiguous {
                        if let Some(m) = m {
                            use std::fmt::Write;
                            if first_mod {
                                first_mod = false;
                            } else {
                                mods.push(',');
                            }
                            let mut first_loc = true;
                            for (i, score) in locations {
                                if first_loc {
                                    first_loc = false;
                                } else {
                                    mods.push('|');
                                }
                                if let Some(score) = score {
                                    write!(
                                        mods,
                                        "{i}[MS, MS:1001876, modification probability, {score}]"
                                    )?;
                                } else {
                                    write!(mods, "{i}")?;
                                }
                            }
                            write!(mods, "-{m}")?;
                        }
                    }

                    write!(
                        self.writer,
                        "PSM\t{sequence}\t{psm_id}\t{accession}\t{unique}\t{database}\t{database_version}\t{search_engine}\t{search_engine_score}\t{modifications}\t{spectra_ref}\t{retention_time}\t{charge}\t{exp_mass_to_charge}\t{calc_mass_to_charge}\t{pre}\t{post}\t{start}\t{end}\t{reliability}\t{uri}\t{lc}",
                        sequence = peptidoform
                            .sequence()
                            .iter()
                            .filter_map(|s| s.aminoacid.one_letter_code())
                            .collect::<String>(),
                        psm_id = if first_peptidoform {
                            psm.numerical_id().map_or_else(
                                || {
                                    highest_used_id += 1;
                                    highest_used_id.to_string()
                                },
                                |id| id.to_string(),
                            )
                        } else {
                            highest_used_id += 1;
                            highest_used_id.to_string()
                        },
                        accession = psm
                            .proteins()
                            .first()
                            .map_or(Cow::Borrowed("null"), |p| p.id().accession().clone()), /* TODO: contains an I assume unnecessary .clone */
                        unique = psm.unique().map_or_else(|| "null".to_string(), |d| d.to_string()),
                        database = psm.database().map_or("null", |d| d.0),
                        database_version = psm.database().and_then(|d| d.1).unwrap_or("null"),
                        search_engine = psm.search_engine().map_or_else(
                            || "null".to_string(),
                            |d| format!(
                                "[{}, {0}:{}, {}, ]",
                                d.accession.cv, d.accession.accession, d.name
                            )

                        ),
                        search_engine_score = {
                            if let Some((v, term)) = psm.original_confidence() {
                                let Some(pos) = self
                                    .metadata
                                    .psm_search_engines
                                    .iter()
                                    .position(|s| s.term == term)
                                else {
                                    return Err(MzTabWriteError::MissingSearchEngine(term));
                                };

                                format!(
                                    "{}{}{v}{}{}",
                                    (1..pos).map(|_| "null").join("\t"),
                                    if pos > 1 { "\t" } else { "" },
                                    if pos < self.metadata.psm_search_engines.len() - 1 {
                                        "\t"
                                    } else {
                                        ""
                                    },
                                    (pos + 1..self.metadata.psm_search_engines.len())
                                        .map(|_| "null")
                                        .join("\t")
                                )
                            } else {
                                (0..self.metadata.psm_search_engines.len())
                                    .map(|_| "null")
                                    .join("\t")
                            }
                        },
                        modifications = if mods.is_empty() { "null" } else { &mods },
                        spectra_ref = match psm.scans() {
                            SpectrumIds::None => "null".to_string(),
                            SpectrumIds::FileNotKnown(ids) =>
                                if self.metadata.ms_runs.is_empty() {
                                    return Err(MzTabWriteError::MissingMSRun(None));
                                } else {
                                    let ids = ids
                                        .iter()
                                        .filter_map(|id| match id {
                                            SpectrumId::Index(i) => {
                                                Some(format!("ms_run[1]:index={i}"))
                                            }
                                            SpectrumId::Number(n) => {
                                                Some(format!("ms_run[1]:scan={n}"))
                                            }
                                            SpectrumId::Native(n) => Some(format!("ms_run[1]:{n}")),
                                            SpectrumId::RetentionTime(_) => None,
                                        })
                                        .join("|");
                                    if ids.is_empty() {
                                        "null".to_string()
                                    } else {
                                        ids
                                    }
                                },
                            SpectrumIds::FileKnown(ids) => {
                                let mut column = String::new();
                                for (file, ids) in ids {
                                    let Some(index) = self
                                        .metadata
                                        .ms_runs
                                        .iter()
                                        .position(|run| run.location == file)
                                        .or_else(|| {
                                            file.file_name().and_then(|f| {
                                                self.metadata.ms_runs.iter().position(|run| {
                                                    run.location
                                                        .file_name()
                                                        .is_some_and(|rf| f == rf)
                                                })
                                            })
                                        })
                                    else {
                                        return Err(MzTabWriteError::MissingMSRun(Some(file)));
                                    };
                                    let index = index + 1; // 1 based
                                    let ids = ids
                                        .iter()
                                        .filter_map(|id| match id {
                                            SpectrumId::Index(i) => {
                                                Some(format!("ms_run[{index}]:index={i}"))
                                            }
                                            SpectrumId::Number(n) => {
                                                Some(format!("ms_run[{index}]:scan={n}"))
                                            }
                                            SpectrumId::Native(n) => {
                                                Some(format!("ms_run[{index}]:{n}"))
                                            }
                                            SpectrumId::RetentionTime(_) => None,
                                        })
                                        .join("|");
                                    column = format!(
                                        "{column}{}{ids}",
                                        if column.is_empty() { "" } else { "|" }
                                    );
                                }
                                if column.is_empty() {
                                    "null".to_string()
                                } else {
                                    column
                                }
                            }
                        },
                        retention_time = psm.retention_time().map_or_else(
                            || "null".to_string(),
                            |d| d.get::<mzcore::system::time::s>().to_string()

                        ),
                        charge = psm
                            .charge()
                            .map_or_else(|| "null".to_string(), |d| d.value.to_string()),
                        exp_mass_to_charge = psm
                            .experimental_mz()
                            .map_or_else(|| "null".to_string(), |d| d.value.to_string()),
                        calc_mass_to_charge = psm
                            .charge()
                            .and_then(|c| peptidoform

                                .formulas()
                                .single()
                                .map(|f| f.monoisotopic_mass() / c.to_float()))
                            .map_or_else(|| "null".to_string(), |d| d.value.to_string()),
                        pre = match psm.flanking_sequences().0 {
                            FlankingSequence::Unknown => "null".to_string(),
                            FlankingSequence::Terminal => "-".to_string(),
                            FlankingSequence::AminoAcid(aa) => aa
                                .one_letter_code()
                                .map_or_else(|| "null".to_string(), |s| s.to_string()),
                            FlankingSequence::Sequence(seq) => seq
                                .sequence()
                                .last()
                                .and_then(|s| s.aminoacid.one_letter_code())
                                .map_or_else(|| "null".to_string(), |s| s.to_string()),
                        },
                        post = match psm.flanking_sequences().1 {
                            FlankingSequence::Unknown => "null".to_string(),
                            FlankingSequence::Terminal => "-".to_string(),
                            FlankingSequence::AminoAcid(aa) => aa
                                .one_letter_code()
                                .map_or_else(|| "null".to_string(), |s| s.to_string()),
                            FlankingSequence::Sequence(seq) => seq
                                .sequence()
                                .first()
                                .and_then(|s| s.aminoacid.one_letter_code())
                                .map_or_else(|| "null".to_string(), |s| s.to_string()),
                        },
                        start = psm
                            .protein_location()
                            .map_or_else(|| "null".to_string(), |r| r.start.to_string()),
                        end = psm
                            .protein_location()
                            .map_or_else(|| "null".to_string(), |r| r.end.to_string()),
                        reliability = match psm.reliability() {
                            Some(crate::Reliability::High) => "1",
                            Some(crate::Reliability::Medium) => "2",
                            Some(crate::Reliability::Poor) => "3",
                            None => "null",
                        },
                        uri = psm.uri().unwrap_or_else(|| "null".to_string()),
                        lc = psm.local_confidence().map_or_else(
                            || "null".to_string(),
                            |lc| lc.iter().map(ToString::to_string).join(",")

                        )
                    )?;
                    for (_, _, col) in custom_columns {
                        write!(self.writer, "\t")?;
                        col(&psm, &mut self.writer)?;
                    }
                    writeln!(self.writer)?;
                }
                first_peptidoform = false;
            }
        }
        Ok(MzTabWriter {
            writer: self.writer,
            prh: self.prh,
            psh: Some(psh),
            metadata: self.metadata,
            state: PhantomData,
        })
    }
}

#[cfg(test)]
#[allow(clippy::missing_panics_doc)]
mod tests {
    use std::io::BufWriter;

    use crate::{
        mztab_writer::{MzTabMSRun, MzTabMetadata, MzTabWriter},
        open_psm_file,
    };

    #[test]
    fn convert() {
        if !std::fs::exists("src/test_files_out").unwrap() {
            std::fs::create_dir("src/test_files_out").unwrap();
        }
        for file in std::fs::read_dir("src/test_files").unwrap() {
            if let Ok(entry) = file
                && entry.file_type().is_ok_and(|t| t.is_file())
            {
                // Parse the file
                let psms = open_psm_file(entry.path(), &mzcore::ontology::STATIC_ONTOLOGIES, false)
                    .unwrap()
                    .collect::<Result<Vec<_>, _>>()
                    .unwrap();

                // Write a converted mzTab file
                let new_path = std::path::Path::new("src/test_files_out")
                    .join(entry.path().with_extension("mzTab").file_name().unwrap());

                MzTabWriter::write(
                    BufWriter::new(std::fs::File::create(&new_path).unwrap()),
                    MzTabMetadata::default(),
                    &psms,
                    MzTabMSRun::default(),
                )
                .unwrap();
                println!("Wrote: {}", new_path.display());

                // Check that the new file does not produce any errors
                for psm in
                    crate::MzTabPSM::parse_file(&new_path, &mzcore::ontology::STATIC_ONTOLOGIES)
                        .unwrap()
                        .2
                {
                    psm.unwrap();
                }
            }
        }
    }
}