Exemplo n.º 1
0
        public SNPCallerReport(List <ContinuousFrequencySNPGenotype> genos, HaploTypeReport hap_report) : base(AlgorithmResult.Success)
        {
            this.Genotypes            = genos;
            this.HaplotypeInformation = hap_report;

            HeaderLineForCSV = HaploTypeReport.GetColumnReportHeaderLine("snp_");
            DataLineForCSV   = hap_report.GetColumnReportLine();
        }
Exemplo n.º 2
0
 public SNPCallerReport(AlgorithmResult result) : base(result)
 {
     HeaderLineForCSV = HaploTypeReport.GetColumnReportHeaderLine("snp_");
     DataLineForCSV   = String.Join(",", Enumerable.Repeat("NA", HeaderLineForCSV.Count(x => x == ',') - 1));
 }