Description Usage Format Details References See Also Examples
Pre-computed results of Clomial function are provided for demo purposes. It contains 1000 trained models on counts data from multiple samples of a single primary breast cancer obtained by deep, next-generation sequencing.
1 |
Clomial1000[["models"]]
is the list of trained models.
Each model is the output of Clomial.iterate()
function
on the breastCancer
data assuming there are 4 clones.
Inferring clonal composition from multiple sections of a breast cancer, Zare et al., Submitted.
Clomial
,
Clomial.iterate
, choose.best
,
breastCancer
1 2 3 4 5 6 7 8 9 10 | data(Clomial1000)
chosen <- choose.best(models=Clomial1000$models)
M1 <- chosen$bestModel
print("Genotypes:")
round(M1$Mu)
print("Clone frequencies:")
M1$P
bestInd <- chosen$bestInd
plot(chosen$Li,ylab="Log-likelihood",type="l")
points(x=bestInd,y=chosen$Li[bestInd],col="red",pch=19)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.