If anyone can help me, I'm not able to convert the txt to include in the list
string thePath = @"C:\Spectrum.txt";
string seq = File.ReadAllText(thePath);
//read the numbers by line
string[] text = Regex.Split(seq, "\t");
List<(double mz, double intensity)> ions = new List<(double mz...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.