Skip to content
Snippets Groups Projects
generateCountTable.Rd 669 B
Newer Older
Arnaud Duvermy's avatar
Arnaud Duvermy committed
% Generated by roxygen2: do not edit by hand
Arnaud Duvermy's avatar
Arnaud Duvermy committed
% Please edit documentation in R/mock_rnaseq.R
Arnaud Duvermy's avatar
Arnaud Duvermy committed
\name{generateCountTable}
\alias{generateCountTable}
\title{Generate count table}
\usage{
generateCountTable(mu_ij_matx_rep, matx_dispersion_rep)
}
\arguments{
\item{mu_ij_matx_rep}{Replicated mu_ij matrix}

\item{matx_dispersion_rep}{Replicated dispersion matrix}
}
\value{
Count table
}
\description{
Generates the count table based on the mu_ij matrix, dispersion matrix, and replication matrix.
}
\examples{
mu_ij_matx_rep <- matrix(1:12, nrow = 3, ncol = 4)
matx_dispersion_rep <- matrix(1:12, nrow = 3, ncol = 4)
generateCountTable(mu_ij_matx_rep, matx_dispersion_rep)
}