Skip to content

Commit

Permalink
UCSCSchema now contains DFrame instead of DataFrame
Browse files Browse the repository at this point in the history
The UCSCSchema class now indirectly extends DataFrame (via the new
DFrame class) instead of being a direct DataFrame extension. This is
in preparation for future changes to the DataFrame class hierarchy (see
commit 36837bdf to S4Vectors for more information).

This change is transparent to the end user and is not expected to break
any existing code or serialized object.
  • Loading branch information
hpages committed Aug 16, 2019
1 parent e33f892 commit 5388ac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,10 +1,10 @@
Package: rtracklayer
Title: R interface to genome annotation files and the UCSC genome browser
Version: 1.45.2
Version: 1.45.3
Author: Michael Lawrence, Vince Carey, Robert Gentleman
Depends: R (>= 3.3), methods, GenomicRanges (>= 1.37.2)
Imports: XML (>= 1.98-0), BiocGenerics (>= 0.25.1),
S4Vectors (>= 0.19.22), IRanges (>= 2.13.13), XVector (>= 0.19.7),
S4Vectors (>= 0.23.18), IRanges (>= 2.13.13), XVector (>= 0.19.7),
GenomeInfoDb (>= 1.15.2),
Biostrings (>= 2.47.6), zlibbioc, RCurl (>= 1.4-2),
Rsamtools (>= 1.31.2), GenomicAlignments (>= 1.15.6), tools
Expand Down
2 changes: 1 addition & 1 deletion R/ucsc.R
Expand Up @@ -399,7 +399,7 @@ setClass("UCSCSchema",
tableName = "character",
rowCount = "integer",
formatDescription = "character"),
contains = "DataFrame")
contains = "DFrame")

setMethod("genome", "UCSCSchema", function(x) {
x@genome
Expand Down

0 comments on commit 5388ac4

Please sign in to comment.