如题 题解 public int lowestCommonAncestor(TreeNode root, int o1, int o2) {//记录遍历到的每个节点的父节点。Map<Integer, Integer> parent new HashMap<>();Queue<TreeNode> queue new LinkedList<>();parent.put(root.val, Integer.MIN_VALUE…
使用 SMRT Link 工具进行细菌基因组组装
之前我写过用canuflye的工具组合进行pacbio数据组装:2021-10-27【WGS】丨Pacbio三代甲基化修饰流程。最近和同事沟通,发现有smrtlink有更好的组装工具,并且比之前的流程更加方便,组装质量…