This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Could not find function "CreateChromatinAssay"

I am currently running an snATAC-seq analysis and performed the following command:

chrom_assay <- CreateChromatinAssay(
   counts = counts,
   sep = c(":", ","),
   genome = 'mm10', 
   fragments = ".../fragments.tbi", 
   min.cells = 10,
   min.features = 200
)

The error that comes out is: Error in CreateChromatinAssay. Could not find function "CreateChromatinAssay"

Any ideas on what to do? I've re-installed Signac multiple times and re-started the system. No progress.

atac-seq 10x cellranger snatac-seq

can you do this?

> grep ("CreateChromatinAssay", ls("package:Signac"), value = T)

Try this:

> library(Signac)
> ls("package:Signac")
> grep ("CreateChromatinAssay", ls("package:Signac"), value = T)

0 answers

No answers yet.

Log in to answer this question.