ll.htmlpage             package:annotate             R Documentation

_T_u_r_n _L_o_c_u_s_L_i_n_k _I_D'_s _i_n_t_o _a _C_l_i_c_k_a_b_l_e _W_e_b _P_a_g_e

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

     Given a set of LocusLink accession numbers we create a web page
     with one element per gene that is clickable and produces the LL
     webpage for that gene.

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

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

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

genelist: A character vector of gene names for LocusLink. 

filename: The name of the file to store the HTML in. 

   title: A title for the web page

othernames: Other values to be included in the table

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

table.center: A logical indicating whether the table should be centered

repository: A character string for the name of a public repositories.
          Valid values include "ll", "ug"

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

     A simple markup is used to provide clickable entries. Anyone that
     is energetic could greatly improve this.

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

     No value is returned. The function is evaluated solely for the
     side effect of producing the file `filename'.

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

     R. Gentleman

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

      gnames <- as.character(6810:6820)
      ll.htmlpage(gnames, "fff.html")

      file.remove("fff.html")

