Skip to content

Commit a0f1f24

Browse files
committed
Fixed documentation warnings
1 parent f94799d commit a0f1f24

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: Structstrings
22
Title: Implementation of the dot bracket annotations with Biostrings
3-
Version: 1.25.2
3+
Version: 1.25.3
44
Date: 2025-09-22
55
Authors@R: person("Felix G.M.","Ernst",
66
email = "felix.gm.ernst@outlook.com",
@@ -43,7 +43,7 @@ Suggests:
4343
tRNAscanImport,
4444
BiocStyle
4545
VignetteBuilder: knitr
46-
RoxygenNote: 7.3.2
46+
RoxygenNote: 7.3.3
4747
Collate:
4848
'Structstrings.R'
4949
'AllGenerics.R'

R/Structstrings-DotBracketDataFrame.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ SDBDFL <- function(..., compress = TRUE, cbindArgs = FALSE)
445445

446446
setMethod("classNameForDisplay", "DotBracketDFrame",
447447
function(x) {
448-
if (class(x) == "DotBracketDFrame")
448+
if (is(x, "DotBracketDFrame"))
449449
"DotBracketDataFrame"
450450
else
451451
class(x)
@@ -454,7 +454,7 @@ setMethod("classNameForDisplay", "DotBracketDFrame",
454454

455455
setMethod("classNameForDisplay", "DotBracketDFrameList",
456456
function(x) {
457-
if (class(x) == "DotBracketDFrameList")
457+
if (is(x, "DotBracketDFrameList"))
458458
"DotBracketDataFrameList"
459459
else
460460
class(x)

R/Structstrings.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
#' \code{Structstrings} uses the infrastructure provided by the
1313
#' \code{Biostrings} package and derives the class
1414
#' \code{\link{DotBracketString}} and such from the equivalent
15-
#' \code{\link{BString}} class. From these base pair table can be produced for
15+
#' \code{\link[Biostrings:XStringSet-class]{BString}} class. From these base pair table can be produced for
1616
#' in depth analysis. For this purpose the \code{\link{DotBracketDataFrame}}
17-
#' class is derived from the \code{\link{DataFrame}} class. In addition the loop
17+
#' class is derived from the \code{\link[S4Vectors:DataFrame-class]{DataFrame}} class. In addition the loop
1818
#' IDs of the base pairs can be retrieved as a \code{\link{LoopIndexList}}, a
19-
#' derivate if the \code{\link{IntegerList}}. Generally, it checks automatically
19+
#' derivate if the \code{\link[IRanges:AtomicList]{IntegerList}}. Generally, it checks automatically
2020
#' for the validity of the dot bracket annotation.
2121
#'
2222
#' The conversion of the \code{\link{DotBracketString}} to the base pair table
@@ -131,7 +131,7 @@ STRUCTURE_CLOSE_CHR <- c("\\)",">","\\]","\\}")
131131
#' is part of the \code{tRNAscanImport} package.
132132
#' @docType data
133133
#' @format object of class \code{\link{DotBracketStringSet}} and
134-
#' \code{\link{DNAStringSet}}
134+
#' \code{\link[Biostrings:XStringSet-class]{DNAStringSet}}
135135
#'
136136
#' @usage data(dbs)
137137
#' @keywords datasets

man/Structstrings-data.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/Structstrings.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)