BatchLowResFdrOptimizer.BatchLowResFdrOptimizer.BatchLowResFdrOptimizer C# (CSharp) Method

BatchLowResFdrOptimizer() public method

public BatchLowResFdrOptimizer ( IList csvFilepaths, bool higherScoresAreBetter, double maximumFalseDiscoveryRate, bool unique, bool overallOutputs, bool phosphopeptideOutputs, string outputFolder ) : System
csvFilepaths IList
higherScoresAreBetter bool
maximumFalseDiscoveryRate double
unique bool
overallOutputs bool
phosphopeptideOutputs bool
outputFolder string
return System
        public BatchLowResFdrOptimizer(IList<string> csvFilepaths, 
            bool higherScoresAreBetter,
            double maximumFalseDiscoveryRate,
            bool unique,
            bool overallOutputs, bool phosphopeptideOutputs, string outputFolder)
        {
            this.csvFilepaths = csvFilepaths;
            this.higherScoresAreBetter = higherScoresAreBetter;
            this.maximumFalseDiscoveryRate = maximumFalseDiscoveryRate;
            this.unique = unique;
            this.overallOutputs = overallOutputs;
            this.phosphopeptideOutputs = phosphopeptideOutputs;
            this.outputFolder = outputFolder;
        }