Yuanclaw / run_app.bat
huashu's picture
Export YuanSeq to Hugging Face without binary assets
7e6a9d1
@echo off
echo ================================================
echo YuanSeq - 启动脚本
echo ================================================
echo.
REM 检查R是否安装
where R >nul 2>&1
if %errorlevel% neq 0 (
echo 错误: 未找到R程序
echo 请先安装R: https://cran.r-project.org/
pause
exit /b 1
)
echo 正在启动 YuanSeq 分析工具...
echo.
REM 运行应用
R -e "shiny::runApp('app.R', launch.browser=TRUE)"
pause