Description Usage Arguments Value Author(s) Examples
transcribe the sequences that are present in a specific column of the input data frame
1 | transcribe_seqs(df, seqColName="siRNA_seq", toDNA=FALSE, progress_bar=FALSE)
|
df |
input data frame. |
seqColName |
name of the column that contains the sequences (character vector) ( each sequence must be in the format of a character vector, i.e. a simple string) |
toDNA |
choose whether to transcribe to DNA (i.e. put T instead of U) (boolean) |
progress_bar |
choose whether disable printing warnings/messages. (boolean) |
data frame given in input, but with the sequences transcribed.
Andrea Franceschini
1 2 3 4 | data(uuk_screen)
input_screen = head(uuk_screen, n=10)
uuk_screen_transcribed = transcribe_seqs(input_screen)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.