You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<OpenMS/FORMAT/FileHandler.h>
#include<OpenMS/FORMAT/MzMLFile.h>
#include<OpenMS/FORMAT/MzXMLFile.h>usingnamespaceOpenMS;intmain()
{
// Chemin vers le fichier d'entrée au format mzML
std::string input_mzml_file = "input_file.mzML";
// Chemin vers le fichier de sortie au format mzXML
std::string output_mzxml_file = "output_file.mzXML";
// Créer un objet pour gérer le fichier mzML d'entrée
MzMLFile mzml_file;
// Créer un objet pour gérer le fichier mzXML de sortie
MzXMLFile mzxml_file;
// Charger le fichier mzML
MSExperiment experiment;
mzml_file.load(input_mzml_file, experiment);
// Écrire le fichier mzXML
mzxml_file.store(output_mzxml_file, experiment);
return0;
}
The text was updated successfully, but these errors were encountered:
OpenMS
The text was updated successfully, but these errors were encountered: