make.html.body: HTML report helper

Description Usage Arguments Value Author(s) Examples

Description

Returns a character vector with an html formatted table. Essentially, it collapses the input rows to a single character and puts a <tbody></tbody> tag set around. It is meant to be applied to the output of make.html.rows. Internal use.

Usage

1

Arguments

mat

the character vector produced by make.html.rows.

Value

A character vector with the body of mat formatted in html.

Author(s)

Panagiotis Moulos

Examples

1
2
3
4
5
6
7
data.matrix <- round(1000*matrix(runif(400),100,4))
rownames(data.matrix) <- paste("gene_",1:100,sep="")
colnames(data.matrix) <- c("C1","C2","T1","T2")
the.cells <- make.html.cells(data.matrix)
the.header <- make.html.header(the.cells[1,])
the.rows <- make.html.rows(the.cells)
the.body <- make.html.body(the.rows)

pmoulos/metaseqR-local documentation built on May 9, 2019, 1:13 a.m.