Skip to content

Commit 88ac82a

Browse files
authored
reverse duplicated alt_string_v3 in variant stats (#754)
1 parent ec45c63 commit 88ac82a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

libtiledbvcf/src/stats/variant_stats.cc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -914,10 +914,7 @@ void VariantStats::update_results() {
914914
}
915915

916916
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;
917+
return std::string(ref) + "," + std::string(alt);
921918
}
922919

923920
std::string VariantStats::alt_string_v3(char* ref, char* alt) {

0 commit comments

Comments
 (0)