Description Usage Arguments Examples
Add an input file to quantiNemo.
1 | addFile(object, file.name, file.content)
|
file.name |
The name of the file that you want to add, as defined by QuantiNemo |
file.content |
A dataframe type containing the needed information. The name of the Column should be the one given by Quantinemo |
1 2 3 4 5 | my_sim <- new("simulation")
my_sim <- setParameter(my_sim,"quanti_all",5)
alleles <- data.frame(locus = rep(1,5),allele = seq(1,5),value = seq(-2,2))
my_sim <- addFile(my_sim, "quanti_allelic_file",alleles)
run(my_sim)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.