X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequence.java;h=c31dd3e4fa89160501a0aae175ed8be9535117dd;hb=8d2724b83aca38ef75d68787cc5939d950467e63;hp=f14b5a5d6f4df65e0fb13f789551bbec47620da8;hpb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;p=jalview.git diff --git a/src/jalview/datamodel/Sequence.java b/src/jalview/datamodel/Sequence.java index f14b5a5..c31dd3e 100755 --- a/src/jalview/datamodel/Sequence.java +++ b/src/jalview/datamodel/Sequence.java @@ -1,19 +1,20 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - * + * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.datamodel; @@ -22,6 +23,8 @@ import jalview.analysis.AlignSeq; import java.util.Enumeration; import java.util.Vector; +import fr.orsay.lri.varna.models.rna.RNA; + /** * * Implements the SequenceI interface for a char[] based sequence object. @@ -48,6 +51,8 @@ public class Sequence implements SequenceI String vamsasId; DBRefEntry[] dbrefs; + + RNA rna; /** * This annotation is displayed below the alignment but the positions are tied @@ -60,7 +65,7 @@ public class Sequence implements SequenceI */ int index = -1; - /** array of seuqence features - may not be null for a valid sequence object */ + /** array of sequence features - may not be null for a valid sequence object */ public SequenceFeature[] sequenceFeatures; /** @@ -707,6 +712,7 @@ public class Sequence implements SequenceI { tmp = new char[i]; System.arraycopy(sequence, 0, tmp, 0, i); + j=sequence.length; } else { @@ -715,6 +721,9 @@ public class Sequence implements SequenceI System.arraycopy(sequence, j, tmp, i, sequence.length - j); } boolean createNewDs = false; + // TODO: take a look at the new dataset creation validation method below - + // this could become time comsuming for large sequences - consider making it + // more efficient for (int s = i; s < j; s++) { if (jalview.schemes.ResidueProperties.aaIndex[sequence[s]] != 23) @@ -1200,4 +1209,9 @@ public class Sequence implements SequenceI { index = value; } + + public void setRNA(RNA r){rna=r;} + + public RNA getRNA() { return rna; } + }