genomestruc               package:seao               R Documentation

_G_e_n_o_m_e _s_t_r_u_c_t_u_r_e _d_e_f_i_n_i_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     Defines the experiment genome (or parameter set) structure.

_U_s_a_g_e:

       genomestruc(n.genes=NULL)

_A_r_g_u_m_e_n_t_s:

 n.genes: The number of genes (parameters) of each individual
          (experimental set-up). The number of genes (parameters) will
          be asked if no argument is given.

_V_a_l_u_e:

     A structure which is the first part of an evolutionary algorithm
     structure. 

   genes: An list of genes (parameters); each gene (parameter) itself
          is a list of: 

          _n_a_m_e: the name of the gene (parameter)

          _m_i_n: the minimal value that the gene (parameter) can have

          _m_a_x: the maximum value that the gene (parameter) can have

          _n._a_l_l_e_l_e_s: the number of the alleles (parameter values) the
               gene (parameter) can have 

          _n_a_m_e_s: a vector containing the names of all the different
               alleles (parameter values); this is optional and set to
               NULL if the number of names given is not equal to the
               number of alleles (parameter values)  

generations: The second part of an evolutionary algorithm structure
          which contains a list of generations (fitnesses, allele
          values etc); the value is initially NULL.

_N_o_t_e:

     'genomestruc' is the actual genome (parameter set) definition
     function. However, if package 'seao.gui' is also loaded, a
     graphical interface can be called by 'genomestruc.gui'. The return
     value of both functions is exactly the same, since the former is
     called by the latter.

_A_u_t_h_o_r(_s):

     Kurt Sys (kurt.sys@rug.ac.be)

_R_e_f_e_r_e_n_c_e_s:

_S_e_e _A_l_s_o:

     newgen

_E_x_a_m_p_l_e_s:

