Esempio n. 1
0
        protected override List <IParallelTaskProcessor> GetTaskProcessors()
        {
            var result = new List <IParallelTaskProcessor>();

            foreach (var file in _options.PercolatorOutputFiles)
            {
                var taskoptions = new PercolatorPeptideDistillerOptions()
                {
                    PercolatorOutputFile = file
                };

                result.Add(new PercolatorPeptideDistiller(taskoptions));
            }
            return(result);
        }
 public PercolatorPeptideDistiller(PercolatorPeptideDistillerOptions options)
 {
     this._options = options;
 }