Hello. I'm having some difficulty with the makeGeneRegionTrack feature of cummerBund. If I rebuild my cuffData.db with 'mm10_ensGene.gtf', then the following happens:
On the other hand, if I rebuild my cuffData.db file with 'genes.gtf' from the Tuxedo package, then the following happens:
I've noticed similar problems in other posts, but with no solutions. Any suggestions would be appreciated.
Thanks.
Code:
> cuff <- readCufflinks(genome='mm10',gtfFile='mm10_ensGene.gtf',rebuild=TRUE)
> cuff
CuffSet instance with:
4 samples
23285 genes
30073 isoforms
25872 TSS
24748 CDS
139440 promoters
155232 splicing
122340 relCDS
> myGene
CuffGene instance for gene Insm2
Short name: Insm2
Slots:
annotation
features
fpkm
repFpkm
diff
count
isoforms CuffFeature instance of size 1
TSS CuffFeature instance of size 1
CDS CuffFeature instance of size 1
> genetrack <- makeGeneRegionTrack(myGene)
Error in .Call2("Rle_constructor", values, lengths, check, 0L, PACKAGE = "IRanges") :
Rle of type 'list' is not supported
Code:
> cuff <- readCufflinks(genome='mm10',gtfFile='genes.gtf',rebuild=TRUE) > cuff CuffSet instance with: 4 samples 23285 genes 30073 isoforms 25872 TSS 24748 CDS 139440 promoters 155232 splicing 122340 relCDS > myGene CuffGene instance for gene Insm2 Short name: Insm2 Slots: annotation features fpkm repFpkm diff count isoforms CuffFeature instance of size 1 TSS CuffFeature instance of size 1 CDS CuffFeature instance of size 1 > genetrack <- makeGeneRegionTrack(myGene) Error in `[.data.frame`(features(object), , featCols) : undefined columns selected
I've noticed similar problems in other posts, but with no solutions. Any suggestions would be appreciated.
Thanks.
Comment