2025-01-12 04:47:24 +08:00

34 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# CircosHeatmap-aardio
一个基于 R 的环形热图绘制工具,支持数据聚类与可视化,适用于矩阵数据的直观分析与展示。
使用 aardio 实现图形界面,便于用户使用。
## TODO
- 自动识别输入文件格式 xls、xlsx、csv当文件不为 csv 时自动转换一个临时 csv 文件作为程序入参
----注意 R 脚本中所需 csv 文件的内容格式要符合脚本要求
- 优化 UI 和提升交互便利性
- 待补充...
## 开发
修改 `aardio\lib\process\r\_.aardio` 文件中:
```aardio
setLibPaths({..io.appData("aardio/std/r/site-library")});
```
修改为
```aardio
if (_STUDIO_INVOKED) {
// 开发环境
setLibPaths({..io.appData("aardio/std/r/site-library")});
} else {
// 打包后环境
setLibPaths({"lib\r-library"});
}
```
修改它的目的:初次接触 aardio + R 的开发,安装 R 的相关库时遇到写问题,所以干脆把安装好的 R 相关库放入程序根目录下。
## 使用
运行后会自动安装 R 语言环境