String converter = getUserInput("Please enter the converison type, allowed types: [nikeplus, runningahead, runkeeper]");
String inputFilePath = getUserInput("Please enter full path to input file:");
if (converter.equalsIgnoreCase("nikeplus")) {
NikeConverter nike = new NikeConverter(inputFilePath);
long total = nike.doConversion(dmc);
System.out.println("Converted " + total + " runs");
} else if (converter.equalsIgnoreCase("runningahead")) {
RunningAheadConverter runningAhead = new RunningAheadConverter(inputFilePath);
long total = runningAhead.doConversion(dmc);
System.out.println("Converted " + total + " runs");