Description Usage Arguments Value Examples
We will use Left-truncated Mixture Gaussian distribution to model the regulatory signal of each gene. Parameter, 'Gene_use', decides number of top high variant gene for LTMG modeling, and here we use all genes.
1 2 3 4 5 6 |
object |
Input IRIS-FGM object |
... |
other arguments passed to methods |
Gene_use |
using X numebr of top variant gene. input a number, recommend 2000. |
seed |
Set seeds for reproducibility |
k |
Number of components. |
it will reture a LTMG signal matrix
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # If you want to explore DEG, we recommend you should use top 2000 highly variant gene.
## Not run:
object <- RunLTMG(object,
Gene_use = 2000,
seed = 123,
k = 5)
## End(Not run)
# If you want to run bicluster based on LTMG model, we recommend you should use all genes.
## Not run:
object <- RunLTMG(object,
Gene_use ='all',
seed = 123,
k = 5)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.