BioBIKE
(IF-FALSE test      
      THEN statements
      [ELSE statements]

Example:
  (IF-FALSE (FIND-ELEMENT (ORGANISM-OF gene) IN filamentous-organisms)
      THEN (ADD-TO-LIST set1 gene)
      THEN (ADD-TO-LIST set2 gene))

[If the name of the given gene's organism cannot be found in a list of organisms, then the gene is added to one set. Otherwise it is added to another set.]