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 or 'data.frame' 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 or 'data.frame' of other things to add to the table.
          These will not be hyperlinks. The list of othernames can
          contain vectors, matrices, 'data.frames' or lists. 

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 or 'data.frame' 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 sub-list of character
     vectors. See the vignette 'prettyOutput' for more information.
     Othernames should be a list or 'data.frame'. Again, if there are
     multiple entries for a given gene, use a sub-list.

_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")

