Thomas hace 3 años
padre
commit
e2bccb2971
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

@@ -152,7 +152,7 @@ impl SequencesGraph {
         res.iter().for_each(|(node_id, n_neighbors)|{
             if *n_neighbors == 0 {
                 self.graph.remove_node(*node_id);
-                println!("Removing {} which doesnt have any overlapping reads.", self.names.get(&node_id).unwrap());
+                // println!("Removing {} which doesnt have any overlapping reads.", self.names.get(&node_id).unwrap());
                 self.names.remove(node_id);
                 self.sequences.remove(node_id);
             }