Description Usage Arguments Value Examples
Obtain the parameters for mutation signatures and memberships
1 2 | getPMSignature(mutationFeatureData, K, BG = NULL, numInit = 10,
tol = 1e-04, maxIter = 10000)
|
mutationFeatureData |
the mutation data (MutationFeatureData class (S4 class)) by the |
K |
the number of mutation signatures |
BG |
a background mutation features typically provided by |
numInit |
the number of performing calculations with different initial values |
tol |
tolerance for the estimation (when the difference of log-likelihoods become below this value, stop the estimation) |
maxIter |
the maximum number of iteration of estimation |
The output is an instance of EstimatedParameters S4 class, which stores estimated parameters and other meta-information, and will be used for saving parameter values and visualizing the mutation signatures and memberships
1 2 3 4 5 6 | After obtaining mutationFeatureData (see e.g., readMPFile function) as G,
Param <- getPMSignature(G, K = 3)
When using background signature
BG_prob <- readBGFile(G)
Param <- getPMSignature(G, K = 3, BG = BG_prob)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.