Browse Source

VCF write

Thomas 8 months ago
parent
commit
6b643ddbfe
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/variant/variant.rs

+ 1 - 0
src/variant/variant.rs

@@ -394,6 +394,7 @@ impl VcfVariant {
 
     pub fn deletion_desc(&self) -> Option<DeletionDesc> {
         if let Some(len) = self.deletion_len() {
+            info!("{len}");
             Some(DeletionDesc {
                 contig: self.position.contig(),
                 start: self.position.position + 1,