powered by
Given a DNA sequence, the function generates the reverse complement of the sequence and returns it.
rna_reverse_complement(sequence)
A character string containing the reverse complement of the input DNA sequence
A character string containing the DNA sequence to be reversed and complemented
sequence <- "AUCGAGCUAGCUAGCUAGCUAGCU" rna_reverse_complement(sequence) # [1] "AGCUAGCUAGCUAGCUAGCUCGAU"
Run the code above in your browser using DataLab