Skip to content

Commit

Permalink
GNCList objects are now subsettable
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 22, 2015
1 parent 2aa8c7b commit 5622203
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Description: The ability to efficiently represent and manipulate genomic
intervals. Specialized containers for representing and manipulating
short alignments against a reference genome are defined in the
GenomicAlignments package.
Version: 1.21.1
Version: 1.21.2
Author: P. Aboyoun, H. Pages and M. Lawrence
Maintainer: Bioconductor Package Maintainer <[email protected]>
biocViews: Genetics, Infrastructure, Sequencing, Annotation, Coverage,
Expand Down
9 changes: 9 additions & 0 deletions R/GNCList-class.R
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,15 @@ GNCList <- function(x)
setAs("GenomicRanges", "GNCList", function(from) GNCList(from))


### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Subsetting
###

setMethod("extractROWS", "GNCList",
function(x, i) as(callGeneric(as(x, "GRanges"), i), class(x))
)


### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### findOverlaps_GNCList()
###
Expand Down

0 comments on commit 5622203

Please sign in to comment.