BStringViews-constructors     package:Biostrings     R Documentation

_C_o_n_s_t_r_u_c_t_o_r-_l_i_k_e _f_u_n_c_t_i_o_n_s _a_n_d _g_e_n_e_r_i_c_s _f_o_r _B_S_t_r_i_n_g_V_i_e_w_s _o_b_j_e_c_t_s

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

     [TODO: Put a description here]

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

       views(subject, first=NA, last=NA)
       adjacentViews(subject, width, gapwidth=0)
       BStringViews(src, subjectClass, sep="")

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

 subject: [TODO] 

   first: [TODO] 

    last: [TODO] 

   width: [TODO] 

gapwidth: [TODO] 

     src: [TODO] 

subjectClass: [TODO] 

     sep: [TODO] 

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

     In the code snippets below, 'subject' is a character vector or a
     BString (or DNAString or RNAString) object and 'first', 'last' and
     'width' are numeric vectors.

      'views(subject, first, last)': [TODO: Document me]

      'adjacentViews(subject, width, gapwidth)': [TODO: Document me]

     In the code snippets below, 'src' can be a character vector, a
     connection object, a BString (or DNAString or RNAString) object or
     a BStringViews object, 'subjectClass' is a character-string with
     value '"BString"', '"DNAString"' or '"RNAString"' and 'sep' is a
     character-string.

      'BStringViews(src, subjectClass, sep)': [TODO: Document me]

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

     H. Pages

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

     BStringViews-class, BString, DNAString, RNAString

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

       ## A BStringViews object with 12 views
       v12 <- views(DNAString("TAATAATG"), -2:9, 0:11)

