runHMM_1 | R Documentation |
Applies the depmixS4 method depmix on normalized K values.
runHMM_1(dataframeList, initProbs, trProbs)
dataframeList |
List of dataframes separated by cluster and chromosome from the prepareHMMdataframes function. |
initProbs |
Dataframe containing 22 rows and two columns, initProb1 and initProb2. Each row represents a chromosome in sequential order, with initProb1 being the probability of state1 and initProb2 being the probability of state2. |
trProbs |
Matrix of transition start probabilities for HMM |
Output is a list of depmixS4 depmix class objects for each input dataframe
Michelle Webb
data('humanGBMsampleAC') data('initialStartProbabilities') df <- tLOHCalcUpdate(humanGBMsampleAC,1.25,1.25,500,500,4) dataframeList <- prepareHMMdataframes(df) trProbs <- cbind(c(0.8999,0.1001),c(0.1001,0.8999)) output <- runHMM_1(dataframeList, initialStartProbabilities, trProbs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.