Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: bsseq
Version: 1.47.6
Version: 1.47.7
Encoding: UTF-8
Title: Analyze, manage and store whole-genome methylation data
Description: A collection of tools for analyzing and visualizing whole-genome
Expand Down Expand Up @@ -52,7 +52,8 @@ Suggests:
doParallel,
rtracklayer,
BSgenome.Hsapiens.UCSC.hg38,
batchtools
batchtools,
tidyverse
Collate:
utils.R
hasGRanges.R
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
693 changes: 693 additions & 0 deletions vignettes/Longread_guide.Rmd

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vignettes/bsseq.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ from chromosome 22.
`combine()` combines two `BSseq` objects in the following way: the samples for the return objects is the union of the samples from the two objects, and the methylation loci are the union of the two methylation loci. The two objects do not need to have measured the same loci (in the example below, `BStmp` has data on chromosome 1 and X).

```{r data-combine}
BStmp2 <- combine(BStmp, BS.chr22[1:3,])
BStmp2 <- bsseq::combine(BStmp, BS.chr22[1:3,])
granges(BStmp2)
getCoverage(BStmp2)
```
Expand Down
Loading