Skip to content

Commit

Permalink
Add GRCz11 assembly
Browse files Browse the repository at this point in the history
Note that this pushes some unrelated documentation changes introduced by
`devtools::build`.

fixes #54
  • Loading branch information
mschilli87 committed Mar 30, 2020
1 parent 4415370 commit 5e97b55
Show file tree
Hide file tree
Showing 14 changed files with 77 additions and 35 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Suggests:
testthat,
knitr,
lintr
RoxygenNote: 6.1.0
RoxygenNote: 7.1.0
6 changes: 3 additions & 3 deletions R/annotate.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#' @export
gtf2sqlite <-
function(assembly = c("hg19", "hg38", "mm10", "rn5", "rn6", "dm6",
"WBcel235"),
"WBcel235", "GRCz11"),
db.file) {

ah <- AnnotationHub()
Expand Down Expand Up @@ -107,7 +107,7 @@ setGeneric("annotateCircs",
function(se,
annot.list,
assembly = c("hg19", "hg38", "mm10", "rn5", "rn6", "dm6",
"WBcel235"),
"WBcel235", "GRCz11"),
fixCoordIndexing = TRUE,
...)
standardGeneric("annotateCircs"))
Expand All @@ -117,7 +117,7 @@ setGeneric("annotateCircs",
setMethod("annotateCircs", signature("RangedSummarizedExperiment"),
function(se, annot.list,
assembly = c("hg19", "hg38", "mm10", "rn5", "rn6", "dm6",
"WBcel235"),
"WBcel235", "GRCz11"),
fixCoordIndexing = TRUE, ...) {

if (fixCoordIndexing == TRUE) {
Expand Down
5 changes: 5 additions & 0 deletions R/circus.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,14 @@ NULL
"80" = "may2015.archive.ensembl.org",
"81" = "jul2015.archive.ensembl.org",
"91" = "dec2017.archive.ensembl.org",
"99" = "jan2020.archive.ensembl.org",
"current" = "ensembl.org"
),

ensembl.organism = list("hsa" = "hsapiens",
"mmu" = "mmusculus",
"cel" = "celegans",
"dre" = "drerio",
"rno" = "rnorvegicus",
"dme" = "dmelanogaster"
),
Expand All @@ -73,6 +75,7 @@ NULL
"hg38" = "AH47963",
"mm10" = "AH47973",
"dm6" = "AH60052",
"GRCz11" = "AH79086",
"rn5" = "AH28841",
"rn6" = "AH60238",
"WBcel235" = "AH47942"
Expand All @@ -82,6 +85,7 @@ NULL
"hg38" = "current",
"mm10" = "current",
"dm6" = "current",
"GRCz11" = "99",
"rn5" = "79",
"rn6" = "91",
"WBcel235" = "81"
Expand All @@ -91,6 +95,7 @@ NULL
"hg38" = "hsa",
"mm10" = "mmu",
"dm6" = "dme",
"GRCz11" = "dre",
"WBcel235" = "cel"
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install_github("BIMSBbioinfo/ciRcus", build_vignettes=FALSE)

# Using the package
### Build TxDb object with genomic features and save locally
Load genomic features from Ensembl and build a database for later (re)use. Currently supported assemblies are hg19, hg38, mm10, rn5, dm6 and WBcel235. This needs to be done only once per assembly.
Load genomic features from Ensembl and build a database for later (re)use. Currently supported assemblies are hg19, hg38, mm10, rn5, dm6, GRCz11, and WBcel235. This needs to be done only once per assembly.
```R
gtf2sqlite( assembly = "hg19",
db.file = system.file("extdata/db/human_hg19_ens75_txdb.sqlite",
Expand Down
10 changes: 8 additions & 2 deletions man/AnnotateRanges.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/annotPie-methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 14 additions & 5 deletions man/annotateCircs-methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions man/bedTracks-methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion man/ciRcus.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions man/getIDs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/getStudiesList.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions man/gtf2sqlite.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions man/summarizeCircs-methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/writeBedTracks-methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e97b55

Please sign in to comment.