We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7baad commit bd76ec5Copy full SHA for bd76ec5
1 file changed
include/RapMapUtils.hpp
@@ -33,6 +33,7 @@
33
#include "spdlog/spdlog.h"
34
#include "spdlog/fmt/ostr.h"
35
#include "spdlog/fmt/fmt.h"
36
+#include "RapMapConfig.hpp"
37
#include "PairSequenceParser.hpp"
38
39
#ifdef RAPMAP_SALMON_SUPPORT
@@ -93,7 +94,7 @@ namespace rapmap {
93
94
hd.write("@SQ\tSN:{}\tLN:{:d}\n", txpNames[i], txpLens[i]);
95
}
96
// Eventually output a @PG line
- hd.write("@PG\tID:rapmap\tPN:rapmap\tVN:0.3.1\n");
97
+ hd.write("@PG\tID:rapmap\tPN:rapmap\tVN:{}\n", rapmap::version);
98
std::string headerStr(hd.str());
99
// Don't include the last '\n', since the logger will do it for us.
100
headerStr.pop_back();
0 commit comments