projHeme1 <- ArchRProject(
ArrowFiles = ArrowFiles,
outputDirectory = "HemeTutorial",
copyArrows = TRUE
)
创建ArchRProject时,如果已经createGenomeAnnotation和createGeneAnnotation了还是报错ArchRPRoj is NULL and there is no genome set with addArchRGenome,可试下genome写进参数里。
projHeme1 <- ArchRProject(
ArrowFiles = ArrowFiles,
outputDirectory = "HemeTutorial",
copyArrows = TRUE,
geneAnnotation = geneAnnotation,
genomeAnnotation = genomeAnnotation
)
P.S. 前面createArrowFiles步骤报此错也可试。