* @param jarClass Class containing the main driver method for running the pipeline
* @param name Display name of the pipeline
* @param conf Configuration to be used within all MapReduce jobs run in the pipeline
*/
public MRPipeline(Class<?> jarClass, String name, Configuration conf) {
super(name, conf, new MRCollectionFactory());
this.jarClass = jarClass;
}