JAL-2068 clarify comments
authorJim Procter <jprocter@issues.jalview.org>
Mon, 18 Jul 2016 15:29:15 +0000 (16:29 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Mon, 18 Jul 2016 15:29:15 +0000 (16:29 +0100)
examples/groovy/featureCounter.groovy

index 42d3187..3b5bca6 100644 (file)
@@ -45,7 +45,8 @@ def hasPfam = { features ->
 }
 
 /*
- * Closure that counts residues with a Pfam feature annotation
+ * Closure that computes an annotation based on 
+ * presence of particular residues and features
  * Parameters are
  * - the name (label) for the alignment annotation
  * - the description (tooltip) for the annotation
@@ -74,12 +75,12 @@ def getColumnCounter = { name, desc, acceptResidue, acceptFeatures ->
 }
 
 /*
- * Define an annotation that counts any residue with Pfam domain annotation
+ * Define an annotation row that counts any residue with Pfam domain annotation
  */
 def pfamAnnotation = getColumnCounter("Pfam", "Count of residues with Pfam domain annotation", {true}, hasPfam)
 
 /*
- * Define an annotation that counts charged residues with Pfam domain annotation
+ * Define an annotation row that counts charged residues with Pfam domain annotation
  */
 def chargedPfamAnnotation = getColumnCounter("Pfam charged", "Count of charged residues with Pfam domain annotation", isCharged, hasPfam)