Ejemplo n.º 1
0
 /**
  * Check if the rule matches the provided patient's genotype.
  *
  * @param A patient's genotype.
  * @return Whether the genotype matches the rule logical description or not.
  */
 public boolean matchPatientProfile(Genotype genotype) {
   ArrayList<GenotypeElement> listGenotypeElements = genotype.getListGenotypeElements();
   return node.test(listGenotypeElements);
 }