revString              package:annotate              R Documentation

_F_u_n_c_t_i_o_n_s _t_o _c_r_e_a_t_e _a_n_t_i-_s_e_n_s_e _D_N_A _s_t_r_i_n_g

_D_e_s_c_r_i_p_t_i_o_n:

     These functions will reverse a DNA character string and then
     convert to its complement. Useful for matching to DNA sequences
     when you have the wrong strand sequence.

_U_s_a_g_e:

     revString(x)
     revBase(x)

_A_r_g_u_m_e_n_t_s:

       x: A character string or vector of character strings
          representing a DNA sequence. By default this should only
          contain A, C, G, T, and possibly N.  

_V_a_l_u_e:

     A character string or vector of character strings.

_A_u_t_h_o_r(_s):

     James W. MacDonald

_E_x_a_m_p_l_e_s:

     revString("AAACGCTGCGTTTG")

