This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to add annotation information to a plant genome in the treatment of single-cell ATAC with Signac?

I tried to use Signac to process plant single-cell ATAC data, but I encountered problems when adding gene annotation information to the Seurat object. Here is my code.

gtf <- rtracklayer::import("F:\\scATAC_scSeq\\Arabidopsis_thaliana.TAIR10.50.gtf")

gene.coords <- gtf[gtf$type == 'gene']

seqlevelsStyle(gene.coords) <- 'Ensembl'

gene.coords <- keepStandardChromosomes(gene.coords,pruning.mode = 'coarse')

Annotation(ATAC1) <- gene.coords

ATAC1 <- NucleosomeSignal(object = ATAC1)

ATAC1 <- TSSEnrichment(object = ATAC1,fast = FALSE)

enter image description here

annotation signac plant

0 answers

No answers yet.

Log in to answer this question.