Description

工作流程发布,不足交流探讨及改进

By Tingting, 25 December, 2025
Forums

文件共需要2个:1是orthofinder的结果文件Orthogroups.GeneCount.csv;另一个就是超度量树。

一、软件安装

#使用ubuntu_conda镜像
conda create -n cafe5_env python=3.8
conda activate cafe5_env
conda install -c conda-forge mamba
mamba install cafe
cafe5 --help

二 、过滤orthofinder的结果文件

By zhenzixu, 18 December, 2025
Forums

在需要转换格式的图片路径运行以下python脚本:

注:附件有文档版

import os
from PIL import Image
import pillow_heif

# 注册 HEIF 支持
pillow_heif.register_heif_opener()

# 获取当前目录
current_dir = os.getcwd()