本文整理汇总了C#中DataReader.DoesContainBinCentricData方法的典型用法代码示例。如果您正苦于以下问题:C# DataReader.DoesContainBinCentricData方法的具体用法?C# DataReader.DoesContainBinCentricData怎么用?C# DataReader.DoesContainBinCentricData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataReader
的用法示例。
在下文中一共展示了DataReader.DoesContainBinCentricData方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IndexUimfFile
public static void IndexUimfFile(string uimfFileLocation)
{
bool indexed = false;
using (var uimfReader = new DataReader(uimfFileLocation))
{
if (uimfReader.DoesContainBinCentricData())
{
indexed = true;
Console.WriteLine("Bin centric data found in dataset {0}.", uimfFileLocation);
}
else
{
Console.WriteLine("No bin centric data found for file {0}.", uimfFileLocation);
}
uimfReader.Dispose();
}
if (!indexed)
{
Console.WriteLine("Creating bin centric data for {0}.", uimfFileLocation);
using (DataWriter dataWriter = new DataWriter(uimfFileLocation))
{
dataWriter.CreateBinCentricTables();
dataWriter.Dispose();
}
}
}
示例2: SaturationDetector
public SaturationDetector(string uimfFileLocation)
{
_uimfReader = new DataReader(uimfFileLocation);
_smoother = new SavitzkyGolaySmoother(9, 2);
_peakDetector = new ChromPeakDetector(0.0001, 0.0001);
_theoreticalFeatureGenerator = new JoshTheorFeatureGenerator();
if (!_uimfReader.DoesContainBinCentricData())
{
DataWriter dataWriter = new DataWriter(uimfFileLocation);
dataWriter.CreateBinCentricTables();
}
IterativeTFFParameters msFeatureFinderParameters = new IterativeTFFParameters
{
MinimumRelIntensityForForPeakInclusion = 0.0000000001,
PeakDetectorMinimumPeakBR = 0,
PeakDetectorPeakBR = 5.00000000000002,
PeakBRStep = 0.25,
PeakDetectorSigNoiseRatioThreshold = 0.00000000001,
ToleranceInPPM = 50
};
_msFeatureFinder = new IterativeTFF(msFeatureFinderParameters);
}