/// <summary>
 /// Returns the Last gene in the chromosome.
 /// Helper method that is typically used when Non-pheno type genes exist within the chromosome.
 /// </summary>
 /// <returns></returns>
 public Gene LastGene()
 {
     return(Genes.Last());
 }