htmlpage              package:annotate              R Documentation

_F_u_n_c_t_i_o_n_s _t_o _b_u_i_l_d _H_T_M_L _p_a_g_e_s

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

     This function is a modification of 'll.htmlpage', designed to be
     able to create links for more than one set of ids.

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

     htmlpage(genelist, filename, title, othernames, table.head, table.center = TRUE, repository = "ll")

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

genelist: A list of character vectors containing ids to be made into
          hypertext links. See details for more information.

filename: A filename for the resultant HTML table. 

   title: A title for the table. 

othernames: A list of other things to add to table. These will not be
          hyperlinks. 

table.head: A character vector of column headers for the table.

table.center: Center the table? Defaults to 'TRUE'. 

repository: A list of repositories to use for creating the hypertext
          links. See details for more information.

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

     This is a modification of 'll.htmlpage', which is limited to a
     single column of hyperlinked ids and lists of vectors for
     othernames. This function will accept a list of character vectors,
     each containing different ids that are to be turned into
     hyperlinks (e.g., a list containing affy ids, genbank accession
     numbers, and locus link ids). For instances where there are more
     than one id per gene, use a list of character vectors. Othernames
     should be a list, and can contain both vectors and matrices.

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

     This function is used only for the side effect of creating an HTML
     table.

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

     Robert Gentleman <rgentlem@jimmy.harvard.edu>, further
     modifications by James W. MacDonald <jmacdon@med.umich.edu>

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

     library(annotate)
     gnames <- as.character(6810:6820)
     htmlpage(gnames, "fff.html")
     file.remove("fff.html")

