We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec45c63 commit 88ac82aCopy full SHA for 88ac82a
libtiledbvcf/src/stats/variant_stats.cc
@@ -914,10 +914,7 @@ void VariantStats::update_results() {
914
}
915
916
std::string VariantStats::alt_string(char* ref, char* alt) {
917
- std::string normalized_ref = ref;
918
- std::string normalized_alt = alt;
919
- normalize(normalized_ref, normalized_alt);
920
- return normalized_ref + "," + normalized_alt;
+ return std::string(ref) + "," + std::string(alt);
921
922
923
std::string VariantStats::alt_string_v3(char* ref, char* alt) {
0 commit comments