protected override RCPA.IProcessor GetProcessor()
 {
   MappedCountProcessorOptions options = new MappedCountProcessorOptions()
   {
     InputFile = bamFile.FullName,
     CoordinateFile = gffFile.FullName,
     FastqFile = fileFastq.FullName,
     EngineType = engines.SelectedIndex + 1,
     CountFile = countFile.FullName,
     BedAsGtf = cbBedAsGtf.Checked
   };
   return new MappedCountProcessor(options);
 }
        protected override RCPA.IProcessor GetProcessor()
        {
            MappedCountProcessorOptions options = new MappedCountProcessorOptions()
            {
                InputFile      = bamFile.FullName,
                CoordinateFile = gffFile.FullName,
                FastqFile      = fileFastq.FullName,
                EngineType     = engines.SelectedIndex + 1,
                CountFile      = countFile.FullName,
                BedAsGtf       = cbBedAsGtf.Checked
            };

            return(new MappedCountProcessor(options));
        }