addFile: Add an input file to quantiNemo.

Description Usage Arguments Examples

Description

Add an input file to quantiNemo.

Usage

1
addFile(object, file.name, file.content)

Arguments

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

Examples

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)

frederic-michaud/RQuantiNemo documentation built on May 15, 2019, 2:51 a.m.