Displaying 5 results from an estimated 5 matches for "rs200".
Did you mean:
r200
2020 May 23
0
paste(character(0), collapse="", recycle0=FALSE) should be ""
...se=",")
>
>?? snp_groups <- list(
>???? group1=c(55, 22, 200),
>???? group2=integer(0),
>???? group3=c(99, 550)
>?? )
>
>?? vapply(snp_groups, collapse_snp_ids, character(1))
>?? #??????????? group1??????????? group2??????????? group3
>?? # "rs55,rs22,rs200"????????????? "rs"????? "rs99,rs550"
>
> This has hit me so many times!
>
> Now with 'collapse0=TRUE', we finally have the opportunity to make it do
> the right thing. Let's not miss that opportunity.
>
> Cheers,
> H.
FWIW what convinces...
2020 May 22
5
paste(character(0), collapse="", recycle0=FALSE) should be ""
...quot;, snp_ids, sep="", collapse=",")
snp_groups <- list(
group1=c(55, 22, 200),
group2=integer(0),
group3=c(99, 550)
)
vapply(snp_groups, collapse_snp_ids, character(1))
# group1 group2 group3
# "rs55,rs22,rs200" "rs" "rs99,rs550"
This has hit me so many times!
Now with 'collapse0=TRUE', we finally have the opportunity to make it do
the right thing. Let's not miss that opportunity.
Cheers,
H.
On 5/22/20 11:26, Gabriel Becker wrote:
> I underst...
2007 Jun 18
4
Madwifi just seems to work in Centos 5
I have not installed the madwifi specific kernel stuff (kdml and
hal-kdml) from atrpms. I have installed with wpa rpms.
And my Atheros card is working with almost no work on my part (other
than runing wpa_supplicant as a deamon).
Nice!
2020 May 24
0
paste(character(0), collapse="", recycle0=FALSE) should be ""
...;,")
>
> snp_groups <- list(
> group1=c(55, 22, 200),
> group2=integer(0),
> group3=c(99, 550)
> )
>
> vapply(snp_groups, collapse_snp_ids, character(1))
> # group1 group2 group3
> # "rs55,rs22,rs200" "rs" "rs99,rs550"
>
> This has hit me so many times!
>
> Now with 'collapse0=TRUE', we finally have the opportunity to make it do
> the right thing. Let's not miss that opportunity.
>
I see what you're saying, but I don&...
2020 May 22
2
paste(character(0), collapse="", recycle0=FALSE) should be ""
I agree with Herve, processing collapse happens last so collapse=non-NULL
always leads to a single character string being returned, the same as
paste(collapse=""). See the altPaste function I posted yesterday.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Fri, May 22, 2020 at 9:12 AM Herv? Pag?s <hpages at fredhutch.org> wrote:
> I think that
>
>