Re: [Bioc-devel] build error, piano package

2015-04-22 Thread Dan Tenenbaum
- Original Message - From: Leif Väremo var...@chalmers.se To: bioc-devel@r-project.org Sent: Tuesday, April 21, 2015 11:38:31 PM Subject: [Bioc-devel] build error, piano package Dear developers, I am hoping someone can help me with this issue: The piano package in the devel

[Bioc-devel] build error, piano package

2015-04-22 Thread Leif Väremo
Dear developers, I am hoping someone can help me with this issue: The piano package in the devel branch runs into an error while building on Bioconductor Linux (zin1), however everything is fine in the release branch (zin2). Since the release and devel versions are identical at the moment I

Re: [Bioc-devel] Append/combine option for filterFastq and similar?

2015-04-22 Thread Ryan C. Thompson
That's not ideal because it's duplicating storage unnecessarily. On 04/22/2015 04:07 AM, Aedin wrote: This is one instance were a system or simple unix command is very easy system('cat *.fastq all.fastq') --- On Apr 22, 2015, at 6:00, bioc-devel-requ...@r-project.org wrote: Re:

Re: [Bioc-devel] Append/combine option for filterFastq and similar?

2015-04-22 Thread Jim Hester
I typically use pipe() in these circumstances which avoids using any additional storage readLines(pipe(cat file1 file2)) It should work with filterFastq assuming it can read from connections rather than just files, but I have not tested it to be sure. On Wed, Apr 22, 2015 at 1:16 PM, Ryan C.

Re: [Bioc-devel] Append/combine option for filterFastq and similar?

2015-04-22 Thread Martin Morgan
On 04/22/2015 10:28 AM, Jim Hester wrote: I typically use pipe() in these circumstances which avoids using any additional storage readLines(pipe(cat file1 file2)) It should work with filterFastq assuming it can read from connections rather than just files, but I have not tested it to be

[Bioc-devel] mapping variadic calls to binary calls for dispatch

2015-04-22 Thread Michael Lawrence
Hi guys, In R 3.2 we (mostly Martin Maechler) made it so that c/rbind delegate to c/rbind2 for S4 objects, even when there is a mixture of classes in There are more such cases, like (p)max and (p)min. The functions min and max are overridable via the Summary group generic, but dispatch only

Re: [Bioc-devel] Append/combine option for filterFastq and similar?

2015-04-22 Thread Aedin
This is one instance were a system or simple unix command is very easy system('cat *.fastq all.fastq') --- On Apr 22, 2015, at 6:00, bioc-devel-requ...@r-project.org wrote: Re: Append/combine option for filterFastq and similar? ___