Пример #1
0
 public static string GetValueSafe(PairedEndPeakFinder toReportOn, PropertyInfo FI)
 {
     try {
         return(FI.GetValue(toReportOn).ToString());
     } catch {
         return("NULL");
     }
 }
Пример #2
0
 public static string GetReportValues(PairedEndPeakFinder toReportOn)
 {
     return(String.Join(",", outputValues.Select(x => GetValueSafe(toReportOn, x)).ToArray()));
 }
Пример #3
0
 public PairedEndDeletionFinderReport(PairedEndPeakFinder toReportOn) : base(AlgorithmResult.Success)
 {
     this.DataLineForCSV   = GetReportValues(toReportOn);
     this.HeaderLineForCSV = CreateHeaderLine();
 }