Fit negative binomial model to obtain p-values for interactions.
fit.model(
interaction.data,
distance.bins = NULL,
distribution = "negative-binomial",
bait.filters = c(0, 1),
target.filters = c(0, 1),
adjustment.terms = NULL,
maxit = 100,
epsilon = 1e-08,
cores = 1,
trace = FALSE,
verbose = FALSE,
interim.data.dir = NULL
)
data.table object containing interaction counts. Must contain columns distance, count, and bait_trans_count.
Number of bins to split distance into. Models are fit separately in each bin.
Name of distribution of the counts. Options are 'negative-binomial', 'poisson', 'truncated-poisson', and 'truncated-negative-binomial'
Vector of length two, where the first element corresponds to the lower-end filter and the second to the upper-end filter. When global multiple testing correction is performed, altering the bait filtering settings may affect the number of significant results.
Vector of length two, giving lower and higher filter, respectively. Changing this filtering setting may affect multiple testing correction by altering the number of tests performed.
Character vector of extra terms to adjust for in the model fit.
Maximum number of IWLS iterations for fitting the model (passed to glm.control
)
Positive convergence tolerance for Poisson and negative binomial models. Passed to glm.control
Integer value specifying how many cores to use to fit model for cis-interactions.
Logical indicating if output should be produced for each of model fitting procedure. Passed to glm.control
or gamlss.control
Logical indicating whether to print progress reports.
Path to directory to store intermediate QC data and plots.
Interactions data with expected number of interactions and p-values added.
Fit a negative binomial model for obtaining p-value for interactions. The data is first sorted by distance, and models are fit separately in each quantile of the distance-sorted data.
# NOT RUN {
data(bre80);
fit.model(bre80);
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab