Description Usage Arguments Value Examples
This function allows to create an Experiment object, with a name and a locus list. The locus list is a .txt file, so you have to do a "read.table" of your file into a variable and put this variable as the "locus" parameter in the constructor.
1 | createExperiment(name, locus)
|
name |
The name of the Experiment |
locus |
The Table of locus |
An Experiment
1 2 3 | locusListExample <- data.frame(ch = c("0"),st = c("0"),end = c("0"))
createExperiment("example",locusListExample)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.