This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env Rscript | |
| args = commandArgs(trailingOnly=TRUE) | |
| geo_id <- args[1] | |
| suppressPackageStartupMessages(library(Seurat)) | |
| suppressPackageStartupMessages(library(dplyr)) | |
| # 1. 模拟加载数据过程 | |
| cat(sprintf("R 环境已启动,正在从 GEO 加载 %s 数据...\n", geo_id)) | |
| # pbmc <- Read10X(data.dir = "data/") |