Browse Source

mlterationCategory::TRL

Thomas 9 months ago
parent
commit
4b7679b00c
1 changed files with 8 additions and 8 deletions
  1. 8 8
      src/variant/variant.rs

+ 8 - 8
src/variant/variant.rs

@@ -247,15 +247,15 @@ impl VcfVariant {
             }
             _ => match self.svtype() {
                 Some(sv_type) => {
-                    if let Ok(bnd_desc) = self.bnd_desc() {
-                        if bnd_desc.a_contig != bnd_desc.b_contig {
-                            AlterationCategory::TRL
-                        } else {
-                            AlterationCategory::DEL
-                        }
-                    } else {
+                    // if let Ok(bnd_desc) = self.bnd_desc() {
+                    //     if bnd_desc.a_contig != bnd_desc.b_contig {
+                    //         AlterationCategory::TRL
+                    //     } else {
+                            // AlterationCategory::DEL
+                        // }
+                    // } else {
                         AlterationCategory::from(sv_type) 
-                    }
+                    // }
                 },
                 None => AlterationCategory::Other,
             },