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; }