We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99e7c2a commit 027dcedCopy full SHA for 027dced
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "ga4ghphetools"
3
-version = "0.5.26"
+version = "0.5.27"
4
edition = "2021"
5
keywords = ["GA4GH", "Phenopacket Schema", "Human Phenotype Ontology"]
6
description = "Generate GA4GH phenopackets from tabular data"
src/dto/hgvs_variant.rs
@@ -151,6 +151,8 @@ impl HgvsVariant {
151
pub fn generate_variant_key(hgvs: &str, symbol: &str, transcript: &str) -> String {
152
let mut hgvs_norm = hgvs
153
.replace("c.", "c")
154
+ .replace("+", "plus")
155
+ .replace("-", "minus")
156
.replace('>', "to");
157
hgvs_norm = hgvs_norm
158
.chars()
0 commit comments