package pipeline;

//Import the main classes from the other projects
import OWLpreprocessing.OWLpreprocessing;
import OWL2generator.OWL2_Generator;

public class StartPipeline  
{
     public static void main(String[] args) 
     {
         // Call the main method of OWLpreprocessing
         OWLpreprocessing.main(new String[0]);
     
         // Call the main method of OWL2_Generator
         OWL2_Generator.main(new String[0]);
     }
}

//  https://www.youtube.com/watch?v=PsuZ0WxDJ0M !!!
