diff --git a/pwiz_tools/Skyline/Model/Koina/Config/KoinaConfig_development.xml b/pwiz_tools/Skyline/Model/Koina/Config/KoinaConfig_development.xml index c9ac4490f1..4fa997bc7f 100644 --- a/pwiz_tools/Skyline/Model/Koina/Config/KoinaConfig_development.xml +++ b/pwiz_tools/Skyline/Model/Koina/Config/KoinaConfig_development.xml @@ -1,4 +1,4 @@ - koina.proteomicsdb.org:443 - \ No newline at end of file + koina.wilhelmlab.org:443 + diff --git a/pwiz_tools/Skyline/TestConnected/KoinaBuildLibraryFromCsvTest.cs b/pwiz_tools/Skyline/TestConnected/KoinaBuildLibraryFromCsvTest.cs index 289db7024d..9cefc52c8f 100644 --- a/pwiz_tools/Skyline/TestConnected/KoinaBuildLibraryFromCsvTest.cs +++ b/pwiz_tools/Skyline/TestConnected/KoinaBuildLibraryFromCsvTest.cs @@ -265,7 +265,7 @@ void comparePredictionResultsToFile(string intensityModel, string rtModel, bool var expected = predictionTests[testIndex++]; Assert.AreEqual(expected.PrecursorMz, precursorMz, 1e-8, $"{testTag}: PrecursorMz not equal"); Assert.AreEqual(expected.PrecursorCharge, key.Charge, $"{testTag}: PrecursorCharge not equal"); - Assert.AreEqual(expected.RetentionTime, spectrum.RetentionTime.Value, 1e-5, $"{testTag}: RetentionTime not equal"); + Assert.AreEqual(expected.RetentionTime, spectrum.RetentionTime.Value, 1e-2, $"{testTag}: RetentionTime not equal"); if (!comparePeaks) continue; @@ -277,7 +277,7 @@ void comparePredictionResultsToFile(string intensityModel, string rtModel, bool var expectedPeak = expected.Peaks[i]; var actualPeak = actualPeaks[i]; Assert.AreEqual(expectedPeak.Mz, actualPeak.Mz, 1e-5, $"{testTag}: peak[{i}].Mz not equal"); - Assert.AreEqual(expectedPeak.Intensity, actualPeak.Intensity, 1e-5, $"{testTag}: peak[{i}].Intensity not equal"); + Assert.AreEqual(expectedPeak.Intensity, actualPeak.Intensity, 1e-2, $"{testTag}: peak[{i}].Intensity not equal"); } } }