htmlpage {annotate} | R Documentation |
This function is a modification of ll.htmlpage
,
designed to be able to create links for more than one set of ids.
htmlpage(genelist, filename, title, othernames, table.head, table.center = TRUE, repository = "ll")
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. |
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.
This function is used only for the side effect of creating an HTML table.
Robert Gentleman <rgentlem@jimmy.harvard.edu>, further modifications by James W. MacDonald <jmacdon@med.umich.edu>
library(annotate) gnames <- as.character(6810:6820) htmlpage(gnames, "fff.html") file.remove("fff.html")