Function reverse_complement_of_dna_sequence

Source
pub fn reverse_complement_of_dna_sequence(sequence: &[u8]) -> Vec<u8> 
Expand description

Returns the reverse complement of a DNA sequence. A, C, G, T are converted to T, G, C, A and other characters are remain unchanged.