Oliver Alka

Results 23 comments of Oliver Alka

@axelwalter: This thread can probably be closed since SIRIUS4 end-of-life was 31.12.2022. https://bio.informatik.uni-jena.de/2022/11/sirius-4-end-of-life/ I hope everything works with SIRIUS5.

``` ➜ OpenMS git:(develop) find . -name "*.h" -exec grep -H "SIZE_OF_*" {} \; ./src/openms/include/OpenMS/ANALYSIS/QUANTITATION/IsotopeLabelingMDVs.h: SIZE_OF_DERIVATIZATIONAGENT ./src/openms/include/OpenMS/ANALYSIS/QUANTITATION/IsotopeLabelingMDVs.h: SIZE_OF_MASSINTENSITYTYPE ./src/openms/include/OpenMS/ANALYSIS/QUANTITATION/IsotopeLabelingMDVs.h: static const std::string NamesOfDerivatizationAgent[static_cast(DerivatizationAgent::SIZE_OF_DERIVATIZATIONAGENT)]; ./src/openms/include/OpenMS/ANALYSIS/QUANTITATION/IsotopeLabelingMDVs.h: static const std::string NamesOfMassIntensityType[static_cast(MassIntensityType::SIZE_OF_MASSINTENSITYTYPE)]; ./src/openms/include/OpenMS/ANALYSIS/QUANTITATION/ItraqConstants.h: enum...

Ok, it seems the wrapping of this array lookup is not straightforward: .h ```static const std::string NamesOfPolarity[SIZE_OF_POLARITY];``` .cpp ```const std::string IonSource::NamesOfPolarity[] = {"unknown", "positive", "negative"};``` .pxd ``` cdef extern from...