Skip to content
2 changes: 1 addition & 1 deletion pwiz_tools/Skyline/Model/Lib/EncyclopeDiaHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public static void ConvertKoinaOutputToDlib(string koinaBlibFilepath, string fas
if (!EnsureRequiredFilesDownloaded(FilesToDownload, progressMonitor))
throw new InvalidOperationException(Resources.EncyclopeDiaHelpers_ConvertFastaToKoinaInputCsv_could_not_find_EncyclopeDia);

long javaMaxHeapMB = Math.Min(12 * 1024L * 1024 * 1024, MemoryInfo.TotalBytes / 2) / 1024 / 1024;
long javaMaxHeapMB = MemoryInfo.TotalBytes / 2 / 1024 / 1024 ;
const string csvToLibraryClasspath = "edu.washington.gs.maccoss.encyclopedia.cli.ConvertBLIBToLibrary";

var pr = new ProcessRunner();
Expand Down