From: gmungoc Date: Wed, 4 May 2016 14:03:19 +0000 (+0100) Subject: JAL-2074 corrected classpathentry for Groovy 2.4.6 X-Git-Tag: Release_2_10_0~227^2~8 X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=2303177fbc4c86e4a63c1e8efa8c8bc50516b6a5 JAL-2074 corrected classpathentry for Groovy 2.4.6 --- diff --git a/.classpath b/.classpath index d973eeb..65a766f 100644 --- a/.classpath +++ b/.classpath @@ -38,7 +38,6 @@ - @@ -68,5 +67,6 @@ + diff --git a/doc/AddingGroovySupport.html b/doc/AddingGroovySupport.html index 63e7170..e3e453f 100644 --- a/doc/AddingGroovySupport.html +++ b/doc/AddingGroovySupport.html @@ -29,7 +29,7 @@ Groovy Support in Jalview

Here are some scripts to get you started:

  • Getting the title, alignment and first sequence from the current alignFrame
    -def alf = Jalview.getAlignframes();
    +def alf = Jalview.getAlignFrames();
     print alf[0].getTitle();
     def alignment = alf[0].viewport.alignment;
     def seq = alignment.getSequenceAt(0);