JAL-3127 scripts updated for method signature change
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 25 Mar 2019 08:57:56 +0000 (08:57 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 25 Mar 2019 08:57:56 +0000 (08:57 +0000)
examples/groovy/colourConserved.groovy
examples/groovy/colourSchemes.groovy
examples/groovy/colourUnconserved.groovy

index 35c54d5..5fc2ad1 100644 (file)
@@ -43,7 +43,7 @@ conserved = { ->
     /*
      * to make a new instance for each alignment view
      */
-    getInstance: { AlignViewportI view, AnnotatedCollectionI coll, Map<SequenceI, SequenceCollectionI> map -> conserved() },
+    getInstance: { AlignViewportI view, AnnotatedCollectionI coll -> conserved() },
     
     /*
      * method only needed if colour scheme has to recalculate
index 3f1f953..eb40cc6 100644 (file)
@@ -26,7 +26,7 @@ candy = { ->
     /*
      * to make a new instance for each alignment view
      */
-    getInstance: { AlignViewportI view, AnnotatedCollectionI coll, Map<SequenceI, SequenceCollectionI> map -> candy() },
+    getInstance: { view, coll -> candy() },
     
     /*
      * method only needed if colour scheme has to recalculate
@@ -86,7 +86,7 @@ byWeight = { ->
     // this colour scheme is peptide-specific:
     isApplicableTo: { coll -> !coll.isNucleotide() },
     alignmentChanged: { coll, map -> },
-    getInstance: { coll, map -> byWeight() },
+    getInstance: { view, coll -> byWeight() },
     isSimple: { true },
     findColour: {res, col, seq, consensus, pid -> 
         switch (res) {
index e186766..2365c1e 100644 (file)
@@ -42,7 +42,7 @@ unconserved = { ->
     /*
      * to make a new instance for each alignment view
      */
-    getInstance: { AnnotatedCollectionI coll, Map<SequenceI, SequenceCollectionI> map -> unconserved() },
+    getInstance: { view, coll -> unconserved() },
     
     /*
      * method only needed if colour scheme has to recalculate