lcolladotor / derfinder

Annotation-agnostic differential expression analysis of RNA-seq data via expressed regions-level or single base-level approaches

Home Page:http://lcolladotor.github.io/derfinder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bumphunter as import

mikelove opened this issue · comments

hi,

as you have the code in analyzeChr():

 if(!is.null(regions$regions) & runAnnotation) {
                library("bumphunter")
                annotation <- annotateNearest(regions$regions, subject)
        } else {
                annotation <- NULL
        }  

I would suggest adding bumphunter to the Import field in DESCRIPTION

best,

Mike

If you want to add a pull request here too I think that would be great. I can do them myself, but it would be a huge help if you will.

sure, I'm forking now.

Fixed by Mike Love in 78b7065 Note that bumphunter::annotateNearest() uses IRanges::distance() so 2592e8d takes that into account.

However, there is currently an error as described in https://stat.ethz.ch/pipermail/bioc-devel/2013-November/004958.html Waiting for help from BioC experts.

Found a solution to this problem by modifying the NAMESPACE of the bumphunter package as I reported here https://stat.ethz.ch/pipermail/bioc-devel/2013-November/004967.html

Currently waiting for these changes to be implemented on the release version of bumphunter.