Sha256: 2e91b46cb16d6866dc1c9c29c61adfa5751b41ece2e20c1c6fe29e6396040912
Contents?: true
Size: 306 Bytes
Versions: 28
Compression:
Stored size: 306 Bytes
Contents
" " This function takes a DNA strand and returns its RNA complement. " " G -> C " C -> G " T -> A " A -> U " " If the input is invalid, return an empty string. " " Example: " " :echo OfDNA('ACGTGGTCTTAA') " UGCACCAGAAUU " function! OfDNA(strand) abort " your solution goes here endfunction
Version data entries
28 entries across 28 versions & 1 rubygems