appendSeq               package:GeneR               R Documentation

_A_p_p_e_n_d_s _t_w_o _s_e_q_u_e_n_c_e_s

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

     appends a sequence at the end of another one

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

     appendSeq(destSeqno=0, seqno=1)

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

destSeqno: Sequence number of sequence to be appended

   seqno: Sequence number of sequence to add at the end of destSeqno

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

     0: no error; NULL if error and a warning if problem in memory
     allocation.

_N_o_t_e:

     This function frees the reverse complementary of sequence
     destSeqno

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

     Antoine Lucas

_S_e_e _A_l_s_o:

     'getSeq', 'concat' ,'assemble'

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

       s <- "CTGCGTTTGAAAA"
       placeString(s,seqno=0)
       placeString(s,seqno=1)
       appendSeq(0,1)
       getSeq(0)

