unbound                package:bio3d                R Documentation

_S_e_q_u_e_n_c_e _G_e_n_e_r_a_t_i_o_n _f_r_o_m _a _B_o_u_n_d_s _V_e_c_t_o_r

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

     Generate a sequence of consecutive numbers from a 'bounds' vector.

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

     unbound(start, end)

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

   start: vector of starting values, such as that obtained from
          'bounds'. 

     end: vector of (maximal) end values, such as that obtained from
          'bounds'. 

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

     This is a simple utility function that does the opposite of the
     'bounds' function.

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

     Returns a numeric sequence vector.

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

     Barry Grant

_R_e_f_e_r_e_n_c_e_s:

     Grant, B.J. et al. (2006) _Bioinformatics_ *22*, 2695-2696.

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

     'bounds'

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

     test <- c(seq(1,5,1),8,seq(10,15,1))
     b <- bounds(test)
     unbound(b[,"start"],b[,"end"])

