Skip to content

Commit

Permalink
Ran github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
smped committed Feb 19, 2024
1 parent d400bcb commit a25d9f2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 16 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: transmogR
Type: Package
Title: Modify a set of reference sequences using a set of variants
Version: 0.99.2
Version: 0.99.3
Authors@R: person("Stevie", "Pederson",
email = "stephen.pederson.au@gmail.com",
role = c("aut", "cre"),
Expand Down
4 changes: 1 addition & 3 deletions R/genomogrify.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@
#' @export
#' @name genomogrify
#' @rdname genomogrify-methods
setGeneric(
"genomogrify", function(x, var, ...){standardGeneric("genomogrify")}
)
setGeneric("genomogrify", function(x, var, ...) standardGeneric("genomogrify"))
#' @importFrom S4Vectors mcols
#' @importFrom GenomeInfoDb seqlevels seqnames
#' @importFrom IRanges width
Expand Down
4 changes: 1 addition & 3 deletions R/indelcator.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@
#' @export
#' @name indelcator
#' @rdname indelcator-methods
setGeneric(
"indelcator", function(x, indels, ...){standardGeneric("indelcator")}
)
setGeneric("indelcator", function(x, indels, ...) standardGeneric("indelcator"))
#'
#'
#' @import Biostrings
Expand Down
2 changes: 1 addition & 1 deletion R/overlapsByVar.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#' @name overlapsByVar
#' @rdname overlapsByVar-methods
setGeneric(
"overlapsByVar", function(x, var, ...){standardGeneric("overlapsByVar")}
"overlapsByVar", function(x, var, ...) standardGeneric("overlapsByVar")
)
#'
#' @importFrom IRanges overlapsAny
Expand Down
4 changes: 1 addition & 3 deletions R/owl.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@
#' @export
#' @name owl
#' @rdname owl-methods
setGeneric(
"owl", function(seq, snps, ...){standardGeneric("owl")}
)
setGeneric("owl", function(seq, snps, ...) standardGeneric("owl"))
#' @import Biostrings
#' @importFrom S4Vectors mcols
#' @importFrom methods is
Expand Down
4 changes: 1 addition & 3 deletions R/parY.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@
#' @export
#' @name parY
#' @rdname parY-methods
setGeneric(
"parY", function(x, ...){standardGeneric("parY")}
)
setGeneric("parY", function(x, ...) standardGeneric("parY"))
#' @import GenomicRanges
#' @importFrom GenomeInfoDb seqnames
#' @rdname parY-methods
Expand Down
3 changes: 1 addition & 2 deletions R/transmogrify.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@
#' @name transmogrify
#' @rdname transmogrify-methods
setGeneric(
"transmogrify",
function(x, var, exons, ...){standardGeneric("transmogrify")}
"transmogrify", function(x, var, exons, ...) standardGeneric("transmogrify")
)
#' @importFrom S4Vectors mcols splitAsList
#' @importFrom GenomeInfoDb seqlevels seqnames
Expand Down

0 comments on commit a25d9f2

Please sign in to comment.