randDNA               package:RBioinf               R Documentation

_A _f_u_n_c_t_i_o_n _t_o _g_e_n_e_r_a_t_e _r_a_n_d_o_m _D_N_A _s_e_q_u_e_n_c_e_s.

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

     This function generates random DNA sequences, nucleotides are 
     sampled with frequency 0.25 each.

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

     randDNA(n)

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

       n: The length of the sequence desired.

_D_e_t_a_i_l_s:

     This function generates random sequences of A, C, T and G. Real
     DNA is quite different, so one should not use these sequences for
     much other than pedagogical purposes.

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

     A length one character vector, with 'n' characters randomly 
     chosen from A, C, T and G.

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

     R. Gentleman

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

     randDNA(100)

