Learn R Programming

scsR (version 1.8.0)

transcribe_seqs: transcribe_seqs

Description

transcribe the sequences that are present in a specific column of the input data frame

Usage

transcribe_seqs(df, seqColName="siRNA_seq", toDNA=FALSE, progress_bar=FALSE)

Arguments

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)

Value

data frame given in input, but with the sequences transcribed.

Examples

Run this code
	data(uuk_screen)

	input_screen = head(uuk_screen, n=10)
	uuk_screen_transcribed = transcribe_seqs(input_screen)

Run the code above in your browser using DataLab