Skip to content

Commit 233b898

Browse files
committed
Update Ontology for new instrument types
1 parent 5b89ded commit 233b898

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

Writer/OntologyMapping.cs

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@ public static class OntologyMapping
6868
value = ""
6969
}
7070
},
71+
{
72+
MassAnalyzerType.MassAnalyzerMRTOF, new CVParamType
73+
{
74+
accession = "MS:1003379",
75+
name = "asymmetric track lossless time-of-flight analyzer",
76+
cvRef = "MS",
77+
value = ""
78+
}
79+
},
7180
{
7281
MassAnalyzerType.Any, new CVParamType
7382
{
@@ -543,6 +552,15 @@ public static class OntologyMapping
543552
value = ""
544553
}
545554
},
555+
{
556+
"ORBITRAP ASCEND", new CVParamType
557+
{
558+
accession = "MS:1003356",
559+
name = "Orbitrap Ascend",
560+
cvRef = "MS",
561+
value = ""
562+
}
563+
},
546564
{
547565
"ORBITRAP EXPLORIS 120", new CVParamType
548566
{
@@ -570,6 +588,15 @@ public static class OntologyMapping
570588
value = ""
571589
}
572590
},
591+
{
592+
"ORBITRAP ASTRAL", new CVParamType
593+
{
594+
accession = "MS:1003378",
595+
name = "Orbitrap Astral",
596+
cvRef = "MS",
597+
value = ""
598+
}
599+
},
573600
{
574601
"EXACTIVE", new CVParamType
575602
{
@@ -730,6 +757,8 @@ public static List<CVParamType> GetDetectors(string instrumentAccession)
730757
case "MS:1002732":
731758
// ORBITRAP ECLIPSE
732759
case "MS:1003029":
760+
// ORBITRAP ASCEND
761+
case "MS:1003356":
733762
// ORBITRAP ID-X
734763
case "MS:1003112":
735764
detectors = new List<CVParamType>
@@ -768,6 +797,8 @@ public static List<CVParamType> GetDetectors(string instrumentAccession)
768797
case "MS:1003094":
769798
// ORBITRAP EXPLORIS 480
770799
case "MS:1003028":
800+
// ORBITRAP ASTRAL
801+
case "MS:1003378":
771802
detectors = new List<CVParamType>
772803
{
773804
new CVParamType

0 commit comments

Comments
 (0)