Hi Nick,
Thanks a lot for your answer.
I hope your colleagues will follow your suggestion ;)
In the meantime, is there anything we can do to overcome the problem?
Best regards,
Gioele |
Hi Gioele,
Thanks for reporting this. Obviously Skyline needs handle this more gracefully, but for now here is some Python code that Chat GPT thinks should remove the troublesome sections (I haven't run it, but it looks proper):
import re
def filter_sections(input_file, output_file):
with open(input_file, "r", encoding="utf-8") as infile, open(output_file, "w", encoding="utf-8") as outfile:
section = []
keep_section = False
for line in infile:
if re.match(r"^\s*$", line): # Empty line signals end of a section
if keep_section and section:
outfile.writelines(section)
outfile.write("\n") # Preserve section separation
section = []
keep_section = False
continue
section.append(line)
if re.match(r"(?i)^name", line):
keep_section = False # Reset for new section
if re.match(r"(?i)^num peaks", line):
keep_section = True # Mark section to be kept
# Write the last section if necessary
if keep_section and section:
outfile.writelines(section)
outfile.write("\n")
# Example usage
filter_sections("input.msp", "output.msp") |