fixedWidthCat        package:BiocCaseStudies        R Documentation

_C_o_n_t_r_o_l _t_h_e _o_u_t_p_u_t _o_f _s_h_o_w _m_e_t_h_o_d_s

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

     'fixedWidthCat' makes sure that the output of a show method fits
     on the page by inserting lines breaks into long strings.

     'numName' converts an integer to it's literal name.

     'sepInt' prints integers with a comma as separator between 1000s

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

     fixedWidthCat(x, width=getOption("width"))

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

       x: An R object which is to be shown.

   width: The number of characters after which lines are to be broken.

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

     A character vector of the output with long lines broken

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

     Florian Hahne

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

     long <- paste(rep(letters[1:24], 5), sep="", collapse="")
     fixedWidthCat(long)

