makeReport              package:BicARE              R Documentation

_E_x_p_o_r_t _t_h_e _r_e_s_u_l_t_s _a_s _h_t_m_l _f_i_l_e_s

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

     Creates a directory with html files containing the biclustering
     results.

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

     makeReport(dirPath, dirName, resBic, browse=TRUE)

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

 dirPath: path to the directory

 dirName: the name of the directory where the report will be created

  resBic: a biclustering result

  browse: logical. If TRUE the web browser will be opened

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

     'makeReport' produces a html report of biclustering results in a
     new directory named 'dirName'.   If the 'browse' argument is set
     to TRUE the web browser will be opened on the "home.html" file. 

     Make sure to have rights to create the result directory.

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

     Pierre Gestraud pierre.gestraud@curie.fr

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

     data(sample.biclustering)
     dirPath <- getwd() ## report created in the current working directory
     dirName <- "test"
     makeReport(dirPath, dirName, sample.biclustering, browse=FALSE)

