str2chr | R Documentation |
A simple function to transform a string into character vector.
str2chr(x, split = "", ...)
## S4 method for signature 'character'
str2chr(x, split = "", ...)
## S4 method for signature 'list'
str2chr(x, split = "", num.cores = 1L, tasks = 0L, verbose = FALSE, ...)
x |
A character string or a list/vector of character strings. |
split |
The same as in |
... |
Further parameters for |
num.cores , tasks |
Parameters for parallel computation using package
|
verbose |
If TRUE, prints the function log to stdout. |
A character string
Robersy Sanchez https://genomaths.com
## A character string
str2chr("ATCAGCGGGATCTT")
## A list of character strings
str2chr(list(str1 = "ATCAGCGGGATCTT", str2 = "CTTCTTCGTCAGGC"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.