I am using the following code:
Process process = new Process();
ProcessStartInfo info = new ProcessStartInfo(@"java -jar path\Ontologizer.jar  -g   path\go.obo  -a   path\gene_association.fb  -m Benjamini-Hochberg -c Parent-Child-Intersection -p   path\back.txt  -s   path\genes.txt  -o path\outfull.txt");
process.StartInfo = info;
process.Start();
process.WaitForExit();
process.Dispose();
I get a Win32 exception:
The system cannot find the file specified
How can I fix this problem?
 
     
    