Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlkx committed Oct 20, 2023
1 parent f6e57ff commit 58b65fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/partition_pip_tutorial.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ genomic.annots <- readRDS(system.file("extdata", "genomic.annots.hg19.rds", pack

Load cell-type specific open chromatin regions (OCRs) (hg19).
```{r load-all-OCRs}
genomic.annots$OCRs <- readRDS(system.file("extdata", "OCRs.hg19.gr.rds", package = "mapgen"))
OCRs <- readRDS(system.file("extdata", "OCRs.hg19.gr.rds", package = "mapgen"))
```

Create a list of the annotations, with priority in the order of OCRs, UTRS, Exons, and Introns.
```{r create-annots.list}
annots.list <- list(OCRs = genomic.annots$OCRs,
annots.list <- list(OCRs = OCRs,
UTRs = genomic.annots$UTRs,
Exons = genomic.annots$exons,
Introns = genomic.annots$introns)
Expand Down

0 comments on commit 58b65fc

Please sign in to comment.