Description Usage Arguments Value Examples
Simulate a Hi-C matrix and perform hic_diff analysis on it
1 2 3 4 | hic_simulate(nrow = 100, medianIF = 50000, sdIF = 14000,
powerlaw.alpha = 1.8, sd.alpha = 1.9, prop.zero.slope = 0.001,
biasFunc = .normal.bias, fold.change = NA, i.range = NA, j.range = NA,
Plot = TRUE, scale = TRUE, alpha = 0.05, diff.thresh = NA)
|
nrow |
Number of rows and columns of the full matrix |
medianIF |
The starting value for a power law distribution for the interaction frequency of the matrix. Should use the median value of the IF at distance = 0. Typical values for 1MB data are around 50,000. For 500kb data typical values are 25,000. For 100kb data, 4,000. For 50kb data, 1,800. |
sdIF |
The estimated starting value for a power law distriubtion for the standard deviaton of the IFs. Should use the SD of the IF at distance = 0. Typical value for 1MB data is 19,000. |
powerlaw.alpha |
The exponential parameter for the power law distribution for the median IF. Typical values are 1.6 to 2. Defaults to 1.8. |
sd.alpha |
The exponential parameter for the power law distribution for the SD of the IF. Typical values are 1.8 to 2.2. Defaults to 1.9. |
prop.zero.slope |
The slope to be used for a linear function of the probability of zero in matrix = slope * distance |
biasFunc |
A function used for adding bias to one of the simulated matrices. Should take an input of unit distance and generally have the form of 1 + Probability Density Function with unit distance as the random variable. Can also use a constant as a scaling factor to add a global offset to one of the matrices. The output of the bias function will be multiplied to the IFs of one matrix. Included are a normal kernel bias and a no bias function. If no function is entered, a normal kernel bias with an additional global scaling factor of 4 will be used. To use no bias set biasFunc = .no.bias, see examples section. |
fold.change |
The fold change you want to introduce for true differences in the simulated matrices. Defaults to NA for no fold change added. |
i.range |
The row numbers for the cells that you want to introduce true differences at. Must be same length as j.range. Defaults to NA for no changes added. |
j.range |
The column numbers for the cells that you want to introduce true differences at. Must be same length as Defaults to NA for no changes added. |
Plot |
Logical, should the HiCdiff plots be output? Defaults to TRUE. |
scale |
Logical, Should scaling be applied for the HiCdiff procedure? Defaults to TRUE. |
alpha |
Type I error rate parameter. At what level should a significant difference be defined. Defaults to 0.05. |
diff.thresh |
Parameter for hic_diff procedure. See ?hic_diff for more help. Defaults to NA. |
A list containing the true positive rate (TPR), the specificity (SPC), the p-values, the hic.table object, true differences - a data.table of the rows of the hic.table where a true difference was applied, the truth vector - a vector of 0's and 1's where 1 indicates a true difference was applied to that cell, sim.table - the hic.table object for the simulate matrices before hic_loess and hic_diff was run on it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # simulate two matrices with no fold changes introduced using default values
sim <- hic_simulate()
# example of bias functions
## the default function used
.normal.bias = function(distance) {
(1 + exp(-((distance - 20)^2) / (2*30))) * 4
}
## an additional bias function
.no.bias = function(distance) {
1
}
# simulate matrices with 200 true differences using no bias
i.range = sample(1:100, replace=TRUE)
j.range = sample(1:100, replace=TRUE)
sim2 <- hic_simulate(nrow=100, biasFunc = .no.bias, fold.change = 5,
i.range = i.range, j.range = j.range)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.