JAL-3763 failsafe check for null
[jalview.git] / src / jalview / datamodel / AlignedCodonFrame.java
index 0927dda..6e83fbb 100644 (file)
@@ -220,6 +220,10 @@ public class AlignedCodonFrame
       int[] codon = null;
       SequenceI mappedSeq = null;
       SequenceI ds = seq.getDatasetSequence();
+      if (ds == null)
+      {
+        ds = seq;
+      }
       
       if (this.fromSeq == seq || this.fromSeq == ds)
       {