Displaying 4 results from an estimated 4 matches for "colw".
Did you mean:
col
2017 Jun 17
3
write.dna command
...F806202"
# Store the sequence in lst (a list)
lst <- read.GenBank(DNAid, as.character = T)
# convert the sequence to fasta format
write.dna (lst, file = "DNAseq.fasta", format = "fasta", append =
FALSE,
nbcol= 6, colsep= " ", colw= 10)
Any help will be appreciated.
Thank you.
Kelas
[[alternative HTML version deleted]]
2017 Jun 17
0
write.dna command
...ore the sequence in lst (a list)
> lst <- read.GenBank(DNAid, as.character = T)
>
> # convert the sequence to fasta format
> write.dna (lst, file = "DNAseq.fasta", format = "fasta", append =
>FALSE,
> nbcol= 6, colsep= " ", colw= 10)
>
>
>Any help will be appreciated.
>Thank you.
>
>Kelas
>
> [[alternative HTML version deleted]]
>
>______________________________________________
>R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
>https://stat.ethz.ch/mailman/listinfo/r-...
2015 Feb 24
2
intercalar elementos de vectores
...t; > vtmp <- as.data.frame(lapply(letters,function(x) { rep(x,each=50) }))
> > names(vtmp) <- paste("col",LETTERS,sep="")
> > head(vtmp)
> colA colB colC colD colE colF colG colH colI colJ colK colL colM colN
> colO colP colQ colR colS colT colU colV colW colX colY colZ
> 1 a b c d e f g h i j k l m n
> o p q r s t u v w x y z
> 2 a b c d e f g h i j k l m n
> o p q r s t u v w x y z
> 3...
2015 Feb 24
2
intercalar elementos de vectores
Excelente! Ahora corre muy rápido. No conocía ese método, creo que me va a
resultar muy útil.
Muchas gracias y saludos.
Fernando Macedo
El 24/02/15 a las 10:51, Jorge I Velez escribió:
Fernando,
Podrias intentar
R> a <- rep('a', 5)
R> b <- rep('b', 5)
R> a
[1] "a" "a" "a" "a" "a"
R> b
[1] "b"