Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Robert Castelo
hi Martin, On 10/06/2014 07:24 PM, Martin Morgan wrote: [...] There are two 'as.vector' generics, one defined in Matrix and one in BiocGenerics (and made available via IRanges). These generics have different methods > showMethods(Matrix::as.vector) Function: as.vector (package base) x="abIndex

Re: [Bioc-devel] RMarkdown for vignettes (builder issues)

2014-10-07 Thread Gordon Ball
Sorry to re-open this thread, but it appears that this configuration works with some builders but not others. There appear to be two different failure modes: Works with: oaxaca, perceval (OSX 10.6, 10.9) Fails with: moscato1 (windows 2008) InvalidUrlException "D:%5Cpackagebuilder%5Cjobs%5CST

[Bioc-devel] GOexpress: new package to visualise microarray and RNAseq data using gene ontology annotations

2014-10-07 Thread Kevin Rue-Albrecht
Dear all, I would like to introduce a recent addition to Bioconductor. I hope those of you working with transcriptomics data will find it useful for their own work. *GOexpress *is a package taking an *ExpressionSet *object minimally including *assayData *and *phenoData* corresponding to either mi

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Michael Lawrence
Does that happen with the other methods or just "["? As a last resort, you could just drop the import (because "[" is a primitive, it should just work). On Tue, Oct 7, 2014 at 3:08 AM, Robert Castelo wrote: > hi Martin, > > On 10/06/2014 07:24 PM, Martin Morgan wrote: > [...] > > There are two

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Robert Castelo
hi, it happens only with "[", that's why i'm puzzled. it behaves as if you load a GRanges object 'x' and try to subset it x[1] without loading 'GenomicRanges' first. robert. On 10/07/2014 05:05 PM, Michael Lawrence wrote: Does that happen with the other methods or just "["? As a last resort,

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Martin Morgan
On 10/07/2014 08:15 AM, Robert Castelo wrote: hi, it happens only with "[", that's why i'm puzzled. it behaves as if you load a GRanges object 'x' and try to subset it x[1] without loading 'GenomicRanges' first. Is there a reproducible example? I see in your code there are several places wh

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Michael Lawrence
On Tue, Oct 7, 2014 at 8:54 AM, Martin Morgan wrote: > On 10/07/2014 08:15 AM, Robert Castelo wrote: > >> hi, it happens only with "[", that's why i'm puzzled. >> >> it behaves as if you load a GRanges object 'x' and try to subset it >> >> x[1] >> >> without loading 'GenomicRanges' first. >> > >

Re: [Bioc-devel] RMarkdown for vignettes (builder issues)

2014-10-07 Thread Dan Tenenbaum
This is fixed now. http://bioconductor.org/spb_reports/STATegRa_0.99.4_buildreport_20141007100210.html Dan - Original Message - > From: "Gordon Ball" > To: "Andrzej Oleś" , "Dan Tenenbaum" > > Cc: jmac...@u.washington.edu, bioc-devel@r-project.org, "david Gomez-Cabrero" > > Sent: T

[Bioc-devel] S4Vectors unit tests

2014-10-07 Thread Michael Lawrence
Looks like we still have to move over the DataFrame, etc tests from IRanges? Michael [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel

Re: [Bioc-devel] S4Vectors unit tests

2014-10-07 Thread Hervé Pagès
On 10/07/2014 10:35 AM, Michael Lawrence wrote: Looks like we still have to move over the DataFrame, etc tests from IRanges? Yes this and other leftovers. H. Michael [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org maili

Re: [Bioc-devel] droplevels method for DataFrame?

2014-10-07 Thread Michael Lawrence
Cool. We should consider moving some of the infrastructure pieces to the github bridge. I added a droplevels method for List that should take care of things. On Mon, Oct 6, 2014 at 6:11 PM, Ryan C. Thompson wrote: > Hi, > > Yes, if something is on Github (or just any git/hg repo that I can clon

[Bioc-devel] Request for Comments on The NIH Software Discovery Index--a system for linking software, publications and users in the research community

2014-10-07 Thread Sean Davis
On behalf of a number of software developers, end-users, publishers associated with the scientific analysis community, we would like to invite all of you to review a document generated as a result of a NIH BD2K supported meeting that focused on the opportunities and challenges of developing a softw

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Martin Morgan
On 10/07/2014 09:15 AM, Michael Lawrence wrote: Probably in your code you do not actually want to require() ad hoc packages and influence the user search path (and implicitly rely on search path order for correct functionality), but rather to requireNamespace("foo"); foo::fun(...

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Dario Strbenac
The guidelines state : Depends: is appropriate when a package is used in the example section of a man page. I think such packages should be in Suggests. In the example, the package should be loaded by : if(require(examplePackage)) { exampleFunction(data) } --

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Michael Lawrence
I think the intent there is that if you virtually always need a package to generate the input or analyze the output of a documented function, it should be in Depends. If it's a package that is only useful for demonstration, it should be in Suggests, and one should abide by the same guidelines (requ

Re: [Bioc-devel] NAMESPACE question

2014-10-07 Thread Martin Morgan
On 10/07/2014 07:05 PM, Michael Lawrence wrote: I think the intent there is that if you virtually always need a package to generate the input or analyze the output of a documented function, it should be in Depends. If it's a package that is only useful for demonstration, it should be in Suggests,