コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReaderInfoSummary"/> class.
 /// </summary>
 /// <param name="features">The features to enable when building the summary data.</param>
 public ReaderInfoSummary(ReadInfoSummaryFeature features)
 {
     this.totalReads                    = 0L;
     this.totalReadsWithResults         = 0L;
     this.totalReadsThatBuiltAllFilters = 0L;
     this.readSpread                    = new Dictionary <DateTime, int>();
     this.totalReadsFromEachIndex       = new Dictionary <string, int>();
     this.features = features;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReaderInfoSummary"/> class.
 /// </summary>
 /// <param name="features">The features to enable when building the summary data.</param>
 public ReaderInfoSummary(ReadInfoSummaryFeature features)
 {
     this.totalReads = 0L;
     this.totalReadsWithResults = 0L;
     this.totalReadsThatBuiltAllFilters = 0L;
     this.readSpread = new Dictionary<DateTime, int>();
     this.totalReadsFromEachIndex = new Dictionary<string, int>();
     this.features = features;
 }