Re: [Rd] sum() returns NA on a long *logical* vector when nb of TRUE values exceeds 2^31

2017-06-07 Thread Hervé Pagès
Hi Martin, On 06/07/2017 03:54 AM, Martin Maechler wrote: Martin Maechler <maech...@stat.math.ethz.ch> on Tue, 6 Jun 2017 09:45:44 +0200 writes: Hervé Pagès <hpa...@fredhutch.org> on Fri, 2 Jun 2017 04:05:15 -0700 writes: >> Hi, I have a long numeric vect

Re: [Rd] surprisingly, S4 classes with a "dim" or "dimnames" slot are final (in the Java sense)

2017-06-06 Thread Hervé Pagès
im(a2) <- c(2, 3) Error in dim(a2) <- c(2, 3) : invalid first argument On Mon, Jun 5, 2017 at 6:08 PM, Hervé Pagès <hpa...@fredhutch.org <mailto:hpa...@fredhutch.org>> wrote: Hi, It's nice to be able to define S4 classes with slots that correspond

[Rd] surprisingly, S4 classes with a "dim" or "dimnames" slot are final (in the Java sense)

2017-06-05 Thread Hervé Pagès
'dimnames' applied to non-array So it seems that the presence of a "dim" or "dimnames" slot prevents a class from being extended. Is this expected? I couldn't find anything in TFM about this. Sorry if I missed it. Thanks, H. -- Hervé Pagès Progr

[Rd] sum() returns NA on a long *logical* vector when nb of TRUE values exceeds 2^31

2017-06-02 Thread Hervé Pagès
() already does this so that wouldn't create a precedent. Also and FWIW prod() avoids the problem by always returning a double, whatever the type of the input is (except on a complex vector). I can provide a patch if this change sounds reasonable. Cheers, H. -- Hervé Pagès Program in Computational B

Re: [Bioc-devel] Build problem with malbec2

2017-05-19 Thread Hervé Pagès
=f9IAqbtHYuIzQC6mMwh4kAZAYSgDDNUZMxSMSyzDtQs= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206) 667-5791 Fax:(206) 667

Re: [Rd] stopifnot() does not stop at first non-TRUE argument

2017-05-16 Thread Hervé Pagès
t84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=mLJLORFCunDiCafHllurGVVVHiMf85ExkM7B5DngfIk=helOsmplADBmY6Ct7r30onNuD8a6GKz6yuSgjPxljeU= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B

Re: [Rd] stopifnot() does not stop at first non-TRUE argument

2017-05-15 Thread Hervé Pagès
2==5, print("Hey!!!") == "Hey!!!") Stopifnot(2+2==4, print("Hey!!!") == "Hey!!!") Stopifnot(T,T,T,T,T,T,T,T,T,T,T,T,T,T,T,T,F,T) On 15 May 2017, at 15:37 , Martin Maechler <maech...@stat.math.ethz.ch> wrote: I'm still curious about Hervé's idea on using sw

Re: [Rd] stopifnot() does not stop at first non-TRUE argument

2017-05-15 Thread Hervé Pagès
) > Serguei. Well, a good idea, but the 'warning' case is more complicated (and the above incorrect): I do want the warning there, but _not_ return the warning, but rather, the result of eval() : So this needs even more sophistication, using withCallingHandlers(.) and maybe that really get's too s

Re: [Bioc-devel] Question about BiocGeneric::order

2017-05-11 Thread Hervé Pagès
On 05/11/2017 06:44 PM, Hervé Pagès wrote: Hi Michael, On 05/11/2017 03:27 PM, Michael Lawrence wrote: There is a bug in S4Vectors, but thanks to an R 3.4 bug in the methods package (recently fixed in devel), the bug is masked. So, we should fix S4Vectors. The problem is that order,Rle has

Re: [Bioc-devel] Question about BiocGeneric::order

2017-05-11 Thread Hervé Pagès
tary and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender immediately and destroy or permanently delete all copies of the original message. On 5/11/17, 4:25 PM, "Hervé Pagès"

Re: [Bioc-devel] Question about BiocGeneric::order

2017-05-11 Thread Hervé Pagès
vel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=FhYaKPjNM3nCK5wrqNrek8IgmU7YlJH8B77AMM77j7U=N1wtJXFb6nsvQncKFe8tgzi_q8NunVLhu-gJoQA_Co8= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview

Re: [Bioc-devel] Error in BUILD report (anamiR)

2017-05-04 Thread Hervé Pagès
= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206) 667-5791 Fax:(206) 667-1319

Re: [Rd] stopifnot() does not stop at first non-TRUE argument

2017-05-03 Thread Hervé Pagès
On 05/03/2017 12:04 PM, Hervé Pagès wrote: Not sure why the performance penalty of nonstandard evaluation would be more of a concern here than for something like switch(). which is actually a primitive. So it seems that there is at least another way to go than 'dots <- match.call(expand.d

Re: [Rd] stopifnot() does not stop at first non-TRUE argument

2017-05-03 Thread Hervé Pagès
17, at 02:50 , Hervé Pagès <hpa...@fredhutch.org> wrote: Hi, It's surprising that stopifnot() keeps evaluating its arguments after it reaches the first one that is not TRUE: > stopifnot(3 == 5, as.integer(2^32), a <- 12) Error: 3 == 5 is not TRUE In addition: Warning message:

[Rd] stopifnot() does not stop at first non-TRUE argument

2017-05-02 Thread Hervé Pagès
all(B)) stop(...) } Best, H. -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206) 667-5791 Fax:(2

Re: [Bioc-devel] Build error: "Could not fetch a url"

2017-05-01 Thread Hervé Pagès
m/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=109-7bzPdWJduzYqsMNKU8xjUs5i9BMXVSxd-eIMpI8=UYGsX4KQsojfi39glCHpvL-GC5CjSg8LSzjCwn0OGSA= -- Hervé Pagès Program in Computational Biology Division of Public Heal

Re: [Rd] byte-compiler bug

2017-04-26 Thread Hervé Pagès
at the end of the paragraph for enableJIT. Indeed. Sorry for missing that (I was playing with several versions of R and probably looked at the enableJIT man page in the wrong R). H. Best, luke On Wed, 26 Apr 2017, Hervé Pagès wrote: Hi, I'm running into a case where byte-compilation changes

Re: [Rd] byte-compiler bug

2017-04-26 Thread Hervé Pagès
On 04/26/2017 01:51 PM, Duncan Murdoch wrote: On 26/04/2017 4:36 PM, Hervé Pagès wrote: Hi, I'm running into a case where byte-compilation changes the semantic of a function. This is with R 3.4.0: foo <- function(x) { TRUE && x } foo(c(a=FALSE)) # [1] FALSE # O

[Rd] byte-compiler bug

2017-04-26 Thread Hervé Pagès
C_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_3.4.0 -- Hervé Pagès Program in Comp

Re: [Bioc-devel] error related to kmp_runtime.cpp(6480)

2017-04-24 Thread Hervé Pagès
-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=OPWgCqsx47iwIB3NpYwWet16UFW8gVYtAhsTwiBNMd0=8uuqR-nZvvgUqZ1Di0WLso-7ap9VByOdbS8gRVZzCTI= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer

Re: [Bioc-devel] Vignette update after change in git mirror repo

2017-04-23 Thread Hervé Pagès
. On 04/23/2017 06:29 PM, Maia Smith wrote: Thanks, Hervé. Very strange, when I checked that link earlier today, it appeared to still have errors. All good now! On Sun, Apr 23, 2017 at 4:49 PM, Hervé Pagès <hpa...@fredhutch.org <mailto:hpa...@fredhutch.org>> wrote: Hi Maia,

Re: [Bioc-devel] Vignette update after change in git mirror repo

2017-04-23 Thread Hervé Pagès
se.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=QzqBONt6vp_Oq6FB3KMJerSAAggLgiauNhROOSs0EzM=Qc0PP8DM7D6TVI78OCfBh9S_0CfQMWRvo-5yiuKfCkA= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred H

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-23 Thread Hervé Pagès
it seems to work in your case. On 04/23/17 02:32, Hervé Pagès wrote: On 04/22/2017 02:57 PM, cstrato wrote: Dear Herve, Thank you for your efforts to get xps running. I will make the changes in Makefile.arch, too, and update README and rename it to install. I am also surprised that the libs

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-22 Thread Hervé Pagès
have realized this when googling around). On 04/21/17 00:29, Hervé Pagès wrote: Also relying on [DY]LD_LIBRARY_PATH is considered bad practice and has been discouraged for years. xps is the only Bioconductor package that relies on these variables for its configure/build process. H. On 04/20

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-20 Thread Hervé Pagès
. Every page I've read on this topic strongly discourages doing this. - Original Message - From: "Hervé Pagès" <hpa...@fredhutch.org> To: "cstrato" <cstr...@aon.at>, "Dan Tenenbaum" <dtene...@fredhutch.org> Cc: "bioc-devel" <bioc-d

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-20 Thread Hervé Pagès
of providing a binary in the first place. Cheers, H. Best regards, Christian On 04/20/17 20:00, Hervé Pagès wrote: On 04/20/2017 10:59 AM, Hervé Pagès wrote: Hi Christian, Disabling 'csrutil disable' might help xps on veracruz2 but that ^^ oops, no double negative intended

Re: [Bioc-devel] Object not found in vignette

2017-04-20 Thread Hervé Pagès
now won't propagate unless you bump the version to > 1.2.2. H. On 04/20/2017 02:52 PM, 王棣台 wrote: it should be in my package since anamiR version 1.1.8 That is weird. Ti-Tai 從: Hervé Pagès [hpa...@fredhutch.org] 寄件日期: 2017年4月21日 上午 05:49 至: 王棣台; bioc-de

Re: [Bioc-devel] Object not found in vignette

2017-04-20 Thread Hervé Pagès
otype data of 'mirna' about breast cancer pheno.mrna phenotype data of 'mrna' about breast cancer So again, did you forget to commit it to svn, or did you add it to the wrong place? H. Ti-Tai ____ 從: Hervé Pagès [hpa...@fredhutch.org] 寄件日期: 2017年4月21日

Re: [Bioc-devel] Object not found in vignette

2017-04-20 Thread Hervé Pagès
On 04/20/2017 02:45 PM, Hervé Pagès wrote: On 04/20/2017 02:36 PM, 王棣台 wrote: That missing object is a list format data generated by myself, so I don't think it would be about Depends, Imports, or Suggests. Except this one, other generated data can be found. And where did you put this data

Re: [Bioc-devel] Object not found in vignette

2017-04-20 Thread Hervé Pagès
. Ti-Tai 從: Hervé Pagès [hpa...@fredhutch.org] 寄件日期: 2017年4月21日 上午 05:16 至: 王棣台; bioc-devel@r-project.org 主旨: Re: [Bioc-devel] Object not found in vignette Why don't you give us the name of your package so we can look at it? I suspect something is missing

Re: [Bioc-devel] Object not found in vignette

2017-04-20 Thread Hervé Pagès
-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=TK-8woT9u1jslARFhHX9Y_pg-0Cg9S5vwIyvMX86pHU=3gO7lG40pXAtK-3RkKJ-yhJdwqUw-NZwBORf4PaN7xg= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-20 Thread Hervé Pagès
On 04/20/2017 10:59 AM, Hervé Pagès wrote: Hi Christian, Disabling 'csrutil disable' might help xps on veracruz2 but that ^^ oops, no double negative intended here. I meant, doing 'csrutil disable' might help... etc H. won't help your end users. I'm no expert

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-20 Thread Hervé Pagès
having to use '-rpath'? Thank you in advance. Best regards, Christian On 04/19/17 22:51, Hervé Pagès wrote: Hi Christian, So I installed ROOT 5 from source on veracruz2. It's in /usr/local/root. However, Apple's SIP (System Integrity Protection, new and enabled by default on El Capitan

Re: [Bioc-devel] Using BiocInstaller with R 3.4.0 beta

2017-04-19 Thread Hervé Pagès
or other suggest to do about that? Any suggestions are appreciated, Michael On 17.04.2017 02:08, Hervé Pagès wrote: FWIW here are all the packages that are victim of this installed.packages bug in today's build report: alpine fCI GenomicFeatures QuasR We only see this error on tokay2

Re: [Bioc-devel] Using BiocInstaller with R 3.4.0 beta

2017-04-19 Thread Hervé Pagès
Hi Michael, On 04/17/2017 12:31 PM, Michael Love wrote: alpine, which had this error as of Sunday, is now cleared (I didn't make any changes to the code)

Re: [Bioc-devel] xps build problem on veracruz2

2017-04-19 Thread Hervé Pagès
nks, H. On 03/24/2017 12:14 PM, cstrato wrote: On 03/24/17 19:55, Hervé Pagès wrote: On 03/24/2017 11:37 AM, cstrato wrote: On 03/24/17 19:23, Hervé Pagès wrote: On 03/24/2017 11:10 AM, cstrato wrote: On 03/24/17 18:02, Hervé Pagès wrote: On 03/24/2017 06:52 AM, cstrato wrote: R/Bi

Re: [Bioc-devel] R CMD check without WARNING: g++ and STL issue for xcms and mzR

2017-04-19 Thread Hervé Pagès
tified that any disclosure, copying, distribution, or use of this email message is prohibited. If you have received this message in error, please notify the sender immediately by e-mail and delete this email message from your computer. Thank you. -- Hervé Pagès Program in Computational Biology D

Re: [Bioc-devel] Using BiocInstaller with R 3.4.0 beta

2017-04-16 Thread Hervé Pagès
ing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=qQj20RkrlTIRAItC1ZQMStpDs5hOqJaHLGXLTycSugE=f74EDfuo7C_LCPCfcGAREY8dqBJwwjc5DqM7YF7Tvg4=

Re: [Bioc-devel] Error in tokay2

2017-04-16 Thread Hervé Pagès
NM1hanoCXbVbqkFax5M= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206) 667-5791 Fax

Re: [Bioc-devel] package 'msa' not building on veracruz2, but on toluca2 and other Mac OS systems

2017-04-16 Thread Hervé Pagès
ps://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=jnChabNsv9hAlCjUWK2OZaz9ASgV9yIlOrr4v73R5_Y=oDD2_encverkZOMDMsj6H8TdvzaHmyOMuqf638eCsxE= -- Hervé Pagès Program in Computational Bi

Re: [Bioc-devel] segfault when building in veracruz2 for BioC 3.5

2017-04-14 Thread Hervé Pagès
r confidential information. If you are not the intended recipient(s), or the employee or agent responsible for the delivery of this message to the intended recipient(s), you are hereby notified that any disclosure, copying, distribution, or use of this email message is prohibited. If you h

Re: [Bioc-devel] R CMD check without WARNING: g++ and STL issue for xcms and mzR

2017-04-12 Thread Hervé Pagès
82 - 1470 06120 Halle +49 (0) 345 5582 - 0 sneumann(at)IPB-Halle.DE Fax. +49 (0) 345 5582 - 1409 -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seatt

Re: [Bioc-devel] disable windows build for EiR development

2017-04-12 Thread Hervé Pagès
=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=S7c-bRLdmKQv4KaedK4ncZ8qnH00h8_MS5rZ3MRrU9U=YYhm5fLgkjYQIl4q-Sa0o2WcfZXi0WYwvkX8O88b-NY= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N

Re: [Bioc-devel] PROTECT errors in Bioconductor packages

2017-04-08 Thread Hervé Pagès
On 04/08/2017 06:50 AM, Martin Morgan wrote: On 04/08/2017 08:16 AM, Aaron Lun wrote: On 07/04/17 20:46, luke-tier...@uiowa.edu wrote: On Fri, 7 Apr 2017, Hervé Pagès wrote: On 04/07/2017 05:37 AM, luke-tier...@uiowa.edu wrote: On Fri, 7 Apr 2017, Hervé Pagès wrote: On 04/06/2017 03

Re: [Bioc-devel] PROTECT errors in Bioconductor packages

2017-04-07 Thread Hervé Pagès
On 04/07/2017 05:37 AM, luke-tier...@uiowa.edu wrote: On Fri, 7 Apr 2017, Hervé Pagès wrote: On 04/06/2017 03:29 AM, Michael Lawrence wrote: On Thu, Apr 6, 2017 at 2:59 AM, Martin Morgan <martin.mor...@roswellpark.org> wrote: On 04/06/2017 05:33 AM, Aaron Lun wrote: The tool is not p

Re: [Bioc-devel] segfault when building in veracruz2 for BioC 3.5

2017-04-07 Thread Hervé Pagès
agent responsible for the delivery of this message to the intended recipient(s), you are hereby notified that any disclosure, copying, distribution, or use of this email message is prohibited. If you have received this message in error, please notify the sender immediately by e-mail and delete this email mess

Re: [Bioc-devel] PROTECT errors in Bioconductor packages

2017-04-07 Thread Hervé Pagès
dWblzF0RnK8ATRw-t61lOIOsi0xTU=JhBOw1ac5wXfV1BSjFuidxFiBTx43J7iEvZG4G0_0uU= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206) 66

Re: [Bioc-devel] Filter classes moved from ensembldb to AnnotationFilter

2017-04-06 Thread Hervé Pagès
ovizBase and ggbio, but it did not work out that smoothly that I hoped. For the other packages that depend on ensembldb there's no problem or only small changes required (did contact the developers). Fingers crossed that Michael can patch biovizBase and ggbio soon. cheers, jo On 4 Apr 2017, at 21:34, He

Re: [Bioc-devel] conflict rowRanges SummarizedExperiment/matrixStats

2017-04-06 Thread Hervé Pagès
duGs7d33ewviTTJaXYdkTNYc= [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGb

Re: [Bioc-devel] Iterating over BSgenomeViews returns DNAString instead of BSgenomeViews

2017-04-06 Thread Hervé Pagès
ticut [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPh

Re: [Bioc-devel] Filter classes moved from ensembldb to AnnotationFilter

2017-04-04 Thread Hervé Pagès
ject.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=iJ2N4NzAka_Lu8P0_h6XWIy-PpkQJQ6twQd8-on8IrI=TXnXWMXgtHzzTK32JJ1rJ7ayI3US5B9DHGXheFpNXEY= -- Hervé Pagès Program in Computati

Re: [Bioc-devel] cbind SummarizedExperiments containing a DNAStringSet not working

2017-04-03 Thread Hervé Pagès
en [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaa

Re: [Rd] mean(x) != mean(rev(x)) different with x <- c(NA, NaN) for some builds

2017-04-01 Thread Hervé Pagès
leshoot this, I have a vague memory that this, or something related to this, has been discussed previously, but I cannot locate it. Is the above a bug in R, a FAQ, a build error, overzealous compiler optimization, and / or ...? Thanks, Henrik -- Hervé Pagès Program in Computational Biology Div

Re: [Bioc-devel] The story of tracing a derfinder bug on OSX that sometimes popped up, sometimes it didn't. Related to IRanges/S4Vectors '$<-'

2017-03-30 Thread Hervé Pagès
I get to work. On Mon, Mar 27, 2017 at 3:59 AM, Martin Morgan <martin.mor...@roswellpark.org> wrote: On 03/22/2017 01:12 PM, Hervé Pagès wrote: Hi Martin, On 03/22/2017 03:17 AM, Martin Maechler wrote: Andrzej Oleś <andrzej.o...@gmail.com> on Wed, 22 Mar 2017 10:29:57 +0100 wri

Re: [Bioc-devel] Problem for Biostrings?

2017-03-29 Thread Hervé Pagès
el=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=q6QK4JMsHgaqD9x6avyUhERn3LtF6NIbMxmXc_omuXE=mA0gVnx-5AftDivwP-G_hbeYRiXwDTZj1PW75JbUyeA= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairvie

Re: [Bioc-devel] pc algorithm library missing on linux builder

2017-03-29 Thread Hervé Pagès
-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=IQ80f2gw2TiMG5P5VdfItKwCWqUWiqsOAFV9iOTcnWE=ux8SUf3VJNpBqcDPbSXsaXU__k6OBYclyuQraBKZ8qM= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer

Re: [Bioc-devel] condition tests on vectors with length greater than 1

2017-03-29 Thread Hervé Pagès
ify the sender immediately by e-mail and delete this email message from your computer. Thank you. ___ Bioc-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvi

Re: [Rd] Transferring ownership of R-managed buffer

2017-03-29 Thread Hervé Pagès
On 03/29/2017 11:04 AM, Hervé Pagès wrote: Hi Tim, On 03/29/2017 08:24 AM, Tim Keitt wrote: I have a use case where I would like to create an SEXP around an existing buffer that is managed by R, thus avoiding a copy operation. What to you mean exactly by "an existing buffer managed

Re: [Rd] Transferring ownership of R-managed buffer

2017-03-29 Thread Hervé Pagès
R-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_r-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=Ceu5dLU_mdGwmpIk_iUqE0dPNjqwy8wiRy6hS_lWF9k=WpLxtWWwjoZ7TjW6oW-vxE6s3LY5kZCG1H5h0xb0Bbs= -- Hervé

Re: [Bioc-devel] xps build problem on veracruz2

2017-03-24 Thread Hervé Pagès
On 03/24/2017 11:37 AM, cstrato wrote: On 03/24/17 19:23, Hervé Pagès wrote: On 03/24/2017 11:10 AM, cstrato wrote: On 03/24/17 18:02, Hervé Pagès wrote: On 03/24/2017 06:52 AM, cstrato wrote: R/Bioc is still building on Mavericks, Not for R devel (3.4). The R folks have switched to El

Re: [Bioc-devel] xps build problem on veracruz2

2017-03-24 Thread Hervé Pagès
On 03/24/2017 11:10 AM, cstrato wrote: On 03/24/17 18:02, Hervé Pagès wrote: On 03/24/2017 06:52 AM, cstrato wrote: R/Bioc is still building on Mavericks, Not for R devel (3.4). The R folks have switched to El Capitan a few days ago: You are right, I did not check R devel. https

Re: [Bioc-devel] xps build problem on veracruz2

2017-03-24 Thread Hervé Pagès
. Best regards, Christian On 03/24/17 01:10, Dan Tenenbaum wrote: - Original Message - From: "Hervé Pagès" <hpa...@fredhutch.org> To: "cstrato" <cstr...@aon.at>, "bioc-devel" <bioc-devel@r-project.org> Sent: Thursday, March 23, 2017

Re: [Bioc-devel] Incorrect order of installing dependencies on OS X in bioc-devel in travis

2017-03-23 Thread Hervé Pagès
t.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=ECGVqk534I_zBnZd1EBIrNR6efOzyEjt8YnPElhR1DU=HC5qJ-IF0Lmc4QobgJA8rfOpOHR9bWaF4MtFchvQma0= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchi

Re: [Bioc-devel] Unit Tests & Test Coverage

2017-03-23 Thread Hervé Pagès
int.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=4xEe7s13qw8OtBMzGMqJ0vk6PIoU68FR0RJ88otY0yg=cT2EjT9BIxY3Q8Nmikk0rGfWteNuwuaDEpwNFwpjL2g= -- Hervé Pagès Program in Computational Biology Division of Pub

Re: [Bioc-devel] xps build problem on veracruz2

2017-03-23 Thread Hervé Pagès
one.) Same reason as for the choice of compilers: that's what the R folks decided to use for producing the Mac binaries of R and CRAN packages. We're just following their lead on that. Cheers, H. Best regards, Christian On 03/23/17 17:47, Hervé Pagès wrote: Hi Christian, The CRAN folks

Re: [Bioc-devel] xps build problem on veracruz2

2017-03-23 Thread Hervé Pagès
-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=q9mk6yIytaNZlSdiLX_dFwchX8Tb7ra6x3WBBNIcs2o=0bNMm-aoHuwWs9yBRjyGHTxT0y3UceNADHgMjtosTWU= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100

Re: [Bioc-devel] The story of tracing a derfinder bug on OSX that sometimes popped up, sometimes it didn't. Related to IRanges/S4Vectors '$<-'

2017-03-22 Thread Hervé Pagès
On 03/21/2017 05:28 PM, Martin Morgan wrote: On 03/21/2017 08:21 PM, Hervé Pagès wrote: Hi Leonardo, Thanks for hunting down and isolating that bug! I tried to simplify your code even more and was able to get a segfault with just: setClass("A", representation(stuff="

Re: [Bioc-devel] The story of tracing a derfinder bug on OSX that sometimes popped up, sometimes it didn't. Related to IRanges/S4Vectors '$<-'

2017-03-21 Thread Hervé Pagès
1.17 2017-02-12 Bioconductor withr 1.0.22016-06-20 CRAN (R 3.4.0) XML3.98-1.5 2016-11-10 CRAN (R 3.4.0) xtable 1.8-22016-02-05 CRAN (R 3.4.0) XVector 0.15.2 2017-02-02 Bioconductor zlibbioc 1.21.0 2016-10-23 Bioconductor ___

Re: [Bioc-devel] Package not being built on Windows or Mac

2017-03-21 Thread Hervé Pagès
ySY4= ___ Bioc-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=X94AHNTkq0h6XD9LVupSKDvSbZ-yegrFoOHwhc

Re: [Bioc-devel] Question on the build and biocheck of the package

2017-03-16 Thread Hervé Pagès
ject.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=YiZGNUYd-khI-yvgitdzYaCkX0YYV4RafW040QHUJRo=-ddB-ch5A6i-pe7QzHb6mH7ARR6Rap0LnufSyE_Qjvg= -- Hervé Pagès Program in Computati

Re: [Bioc-devel] GRangesList Conversion Fails For Unstranded Sequencing Data

2017-03-15 Thread Hervé Pagès
=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=aXT77JwOk3MNlFamCwIVSAOe8rwwHpiEOXsNfNFXtBI=K-Uwhnqzwhw5myIbOiykznBlzKmVP2WAGor-9sYkl6M= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences

Re: [Bioc-devel] Bioconductor and R 3.3.3: Error in c(x, values) : could not find symbol "recursive" in environment of the generic function

2017-03-09 Thread Hervé Pagès
u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwIGaQ=eRAMFD45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=j-wrwOYdw3tV8MRxh1bTywbrHtZp5MQWTT-07aOoyoE=uX9jH2vmSV2vAA029bdUq70SuPUT3jSUd3-cKnR-RA4= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchin

Re: [Bioc-devel] phloseq error: invalid class “sample_data” object: superclass "vectorORfactor" not defined in the environment of the object's class

2017-02-22 Thread Hervé Pagès
45gAfqt84VtBcfhQ=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA=nZTeI-UIuD5hMTuROA6wkN5-wZTBYoKcKKKGr905TS8=F3gPX_Ud6Ah60K-UvTEUA1DibZSnKDoeswqryjQlt0c= -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattl

Re: [Bioc-devel] phloseq error: invalid class “sample_data” object: superclass "vectorORfactor" not defined in the environment of the object's class

2017-02-21 Thread Hervé Pagès
oc" installme [1] "Biostrings" "IRanges""XVector" [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://urldefense.proofpoint.com/v2/url?u=https-3A__stat.ethz.ch_mailman_listinfo_bioc-2Ddevel=DwICAg=e

Re: [Bioc-devel] Problem on malbec2 server

2017-02-14 Thread Hervé Pagès
bump (Updated a link on the package vignette) caused this problem. Thank you. Juan Pablo [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès

Re: [Rd] R 'base' returning 0 as sum of NAs

2017-02-09 Thread Hervé Pagès
On 01/11/2017 02:33 AM, Alex Ivan Howard wrote: There is nothing to sum over, so it shouldn't actually be able to return a concrete numeric value? How much did you spend at the grocery store if you didn't buy anything? H. __ R-devel@r-project.org

Re: [Bioc-devel] Changes S4Vectors etc.

2017-02-09 Thread Hervé Pagès
] compiler_3.4.0 GenomicFeatures_1.27.6 XML_3.98-1.5 [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology D

Re: [Bioc-devel] GenomeInfoDb::Seqinfo() failing with 404 error

2017-02-06 Thread Hervé Pagès
Hi Raymond, This should be fixed now in GenomeInfoDb 1.10.3 (release) and 1.11.8 (devel). Both packages should become available via biocLite() in the next 24 hours or so. Thanks again for reporting the issue and for your patience. Cheers, H. On 02/01/2017 12:32 PM, Hervé Pagès wrote: Hi

Re: [Bioc-devel] GenomeInfoDb::Seqinfo() failing with 404 error

2017-02-01 Thread Hervé Pagès
m your computer. Thank you. ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B

Re: [Bioc-devel] GenomicFeatures::makeTxDbFromGFF leads to a S4Vectors error

2017-01-30 Thread Hervé Pagès
XVector0.14.0 2016-10-18 Bioconductor zlibbioc 1.20.0 2016-10-18 Bioconductor ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division

Re: [Bioc-devel] readGAlignments Lacks strandMode

2017-01-13 Thread Hervé Pagès
On 01/13/2017 12:36 PM, Hervé Pagès wrote: Hi, No ifelse() statement needed. Just use invertStrand() on your GAlignments object to invert its strand. strandMode is specific to paired-end reads and the supported modes reflect what other software do with paired-end reads (e.g. TopHat, Rsubread

Re: [Bioc-devel] GAlignments Sorting Causes C Stack Error

2017-01-09 Thread Hervé Pagès
Matrix_1.2-7.1 BiocParallel_1.8.1 [7] tools_3.3.2 -- Dario Strbenac University of Sydney Camperdown NSW 2050 Australia ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès

Re: [Bioc-devel] IRanges findOverlaps and queryHits

2016-12-29 Thread Hervé Pagès
an/listinfo/bioc-devel [[alternative HTML version deleted]] ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center

Re: [Rd] syntax difference clusterExport in parallel and snow

2016-12-16 Thread Hervé Pagès
(). So it doesn't really address the 1st problem and introduces a new one. Sounds like using a plural form instead of the "list" prefix would be less confusing e.g. 'vars', 'varnames', 'objnames' or something like that. H. -- Hervé Pagès Program in Computational Biology Division of Public Heal

Re: [Bioc-devel] Stackoverflow Bounty: pkgdown R package build_site function causes dependent packages unable to be loaded

2016-12-15 Thread Hervé Pagès
]] ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail

Re: [Bioc-devel] Quick question about landing page

2016-12-13 Thread Hervé Pagès
-- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206) 667-5791 Fax:(206) 667-1319

Re: [Bioc-devel] Advice on build error related to webshot, and possibly related to rmarkdown?

2016-12-08 Thread Hervé Pagès
h many packages use pandoc/pandoc-citeproc for their vignettes. So again, I'm not sure what's going on, sorry. Likely a problem on our side. I suggest you ignore this build error on oaxaca for now. Cheers, H. Thank you. On Thu, Dec 8, 2016 at 1:07 AM, Hervé Pagès <hpa...@fredhutch.org <mai

Re: [Bioc-devel] Advice on build error related to webshot, and possibly related to rmarkdown?

2016-12-07 Thread Hervé Pagès
ort: http://bioconductor.org/spb_reports/chimeraviz_buildreport_20161207152203.html <http://bioconductor.org/spb_reports/chimeraviz_buildreport_20161207152203.html> On Wed, Dec 7, 2016 at 7:42 PM, Hervé Pagès <hpa...@fredhutch.org <mailto:hpa...@fredhutch.org>> wrote: Hi Stian,

Re: [Bioc-devel] Advice on build error related to webshot, and possibly related to rmarkdown?

2016-12-07 Thread Hervé Pagès
ct.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fre

Re: [Bioc-devel] download stats

2016-12-06 Thread Hervé Pagès
02:21 PM, Hervé Pagès wrote: Hi Antonio, Yes the stats for November look low compared to the previous months. Looks like we'll hardly hit the 3 distinct IPs for the whole Bioconductor software repository. Could be genuine though. I'll check what's going on. Thanks for bringing this to our

Re: [Rd] unlist strips date class

2016-12-06 Thread Hervé Pagès
On 12/05/2016 01:05 AM, peter dalgaard wrote: On 02 Dec 2016, at 23:13 , Hervé Pagès <hpa...@fredhutch.org> wrote: More generally one might reasonably expect 'unlist(x)' to be equivalent to 'do.call(c, x)' on a list 'x' where all the list elements are atomic vectors: Well, both are g

Re: [Bioc-devel] Dependency update propagation (rcdk on morelia)

2016-12-05 Thread Hervé Pagès
his message to the intended recipient(s), you are hereby notified that any disclosure, copying, distribution, or use of this email message is prohibited. If you have received this message in error, please notify the sender immediately by e-mail and delete this email message from your computer. Thank

Re: [Bioc-devel] biconductor build error and warning

2016-12-05 Thread Hervé Pagès
uding any attachments) is for...{{dropped:22}} ___ Bioc-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Resea

Re: [Rd] unlist strips date class

2016-12-02 Thread Hervé Pagès
factors: x <- list(factor("Z"), factor(c("a", "Z", "b"))) unlist(x) # [1] Z a Z b # Levels: Z a b do.call(c, x) # [1] 1 1 3 2 then it's the other way around. Also note that the fact that the first 2 numbers in the result of 'do.call(c,

Re: [Bioc-devel] package vignette error : external data can't be captured when compiling package vignette

2016-12-02 Thread Hervé Pagès
installed when you install the package, but the inst directory itself goes away. If in your package source you have the following structure: inst/extdata/ inst/foo.txt In the installed package you end up with: extdata/ foo.txt HTH Dan - Original Message - From: "Jurat Shay

Re: [Bioc-devel] package vignette error : external data can't be captured when compiling package vignette

2016-12-02 Thread Hervé Pagès
st or extdata folder in that repository. Maybe it has not yet been added/committed/pushed to git? Note that everything _under_ inst gets installed when you install the package, but the inst directory itself goes away. If in your package source you have the following structure: inst/extdata/ ins

Re: [Bioc-devel] package vignette error : external data can't be captured when compiling package vignette

2016-12-01 Thread Hervé Pagès
l data must be located in inst/, so I manually created this folder inst/extdata and paste my data, but vignette compilation still failed. According to convention of R package, my package structure will be: myPackage `- inst `- extdata `- data1.bed `- data2.bed `- R `- ... `- NAMESPACE `- DESCRIPTI

Re: [Bioc-devel] download stats

2016-11-29 Thread Hervé Pagès
deleted]] >> >> ___ >> Bioc-devel@r-project.org <mailto:Bioc-devel@r-project.org> mailing list >> https://stat.ethz.ch/mailman/listinfo/bioc-devel <https://stat.ethz.ch/mailman/listinfo/b

Re: [Bioc-devel] still issues with ggplot2/ggproto in Mac OS X, stable

2016-11-22 Thread Hervé Pagès
or other packages that depend on ggplot2/ggproto. Best, R. -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (20

Re: [Bioc-devel] vmatchPattern Returns Out of Bounds Indices

2016-11-18 Thread Hervé Pagès
mailing list https://stat.ethz.ch/mailman/listinfo/bioc-devel -- Hervé Pagès Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpa...@fredhutch.org Phone: (206

<    1   2   3   4   5   6   7   8   9   10   >