protected override IProcessor GetProcessor()
        {
            var option = new MaxQuant2MascotPeptideProcessorOption()
            {
                SiteFile        = siteFile.FullName,
                MinProbability  = minLocalizationProbability.Value,
                MinDeltaScore   = minScoreDiff.Value,
                IsSILAC         = cbSILAC.Checked,
                SILACAminoacids = silacAminoacids.Text,
                MSMSFile        = msmsFile.FullName
            };

            return(new MaxQuant2MascotPeptideProcessor2(option));
        }
 public MaxQuant2MascotPeptideProcessor2(MaxQuant2MascotPeptideProcessorOption options)
 {
     this.options = options;
 }