Skip to content

Commit

Permalink
rtracklayer::import() has no more 'asRangedData' arg
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Sep 10, 2015
1 parent 9507941 commit f44df4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: cummeRbund
Title: Analysis, exploration, manipulation, and visualization of Cufflinks high-throughput sequencing data.
Version: 2.11.1
Version: 2.11.2
Date: 2013-04-22
Author: L. Goff, C. Trapnell, D. Kelley
Description: Allows for persistent storage, access, exploration, and manipulation of Cufflinks high-throughput sequencing data. In addition, provides numerous plotting functions for commonly used visualizations.
Expand Down
4 changes: 2 additions & 2 deletions R/database-setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -1950,7 +1950,7 @@ readCufflinks<-function(dir = getwd(),
stop("Must provide a dbConn connection")

write("Reading GTF file",stderr())
gr<-import(gtfFile,asRangedData=FALSE)
gr<-import(gtfFile)
gr<-as(gr,"data.frame")
#gr$genome<-genomebuild
colnames(gr)[grepl('^transcript_id$',colnames(gr))]<-'isoform_id'
Expand Down Expand Up @@ -1981,7 +1981,7 @@ readCufflinks<-function(dir = getwd(),
requiredAttribs <- c("gene_id", "transcript_id", "exon_number")

if (verbose) message("Importing ", gtfFile)
tmp <- import(gtfFile, asRangedData=FALSE)
tmp <- import(gtfFile)

#dispose of unspliced unstranded transcripts
#tmp <- tmp[ which(strand(tmp) %in% c('+','-')) ]
Expand Down

0 comments on commit f44df4c

Please sign in to comment.