sirius-ms / sirius

SIRIUS is a software for discovering a landscape of de-novo identification of metabolites using tandem mass spectrometry. This repository contains the code of the SIRIUS Software (GUI and CLI)
GNU Affero General Public License v3.0
78 stars 17 forks source link

How to invoke sirius.exe file from other application using the command line #153

Open Surajpatil07 opened 1 month ago

Surajpatil07 commented 1 month ago

I am working on an C# WPF application and I want to start running the sirius.exe with the help of command line. I have .mgf file as input. I will just give an example of how I am using another applications .exe file and want to do the same with sirius.exe. Process anotherapp = new Process(); anotherapp.StartInfo.FileName = "exefilelocation"; anotherapp.StartInfo.Arguments = "anyarguments"; anotherapp.Start(); anotherapp.Close();

I am not sure were to add the location of the mgf file as an input when using sirius.exe