From 4e6cc71b14ee44228778c17dfad4950c8beac283 Mon Sep 17 00:00:00 2001 From: Bradford Powell Date: Mon, 13 Apr 2015 21:24:25 -0400 Subject: [PATCH] output correct version version string was hardcoded in report, use the VERSION static variable that is there just for this purpose --- ExCID_v2.0/bin/Java_code/CaptureStatsBAM5_extended.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExCID_v2.0/bin/Java_code/CaptureStatsBAM5_extended.java b/ExCID_v2.0/bin/Java_code/CaptureStatsBAM5_extended.java index ff00bc8..f87ee69 100755 --- a/ExCID_v2.0/bin/Java_code/CaptureStatsBAM5_extended.java +++ b/ExCID_v2.0/bin/Java_code/CaptureStatsBAM5_extended.java @@ -481,7 +481,7 @@ public static void writeReport(String fname) throws Exception FileWriter report = new FileWriter(fname+".CoverageReport.csv"); - report.write("Version: CapStatsV2.5 2014-05-08\n"); + report.write("Version: "+VERSION+"\n"); report.write("BUFFER size:,"+BUFFER+"\n"); report.write("Read Stats\n"); report.write("Total Reads Produced:,"+totalReadsProduced+"\n");