X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FTurnColourScheme.java;h=4f354a544254f27fd47a733c1773ac00550660e8;hb=a689267090c39792d83ceb5d8f88c539a085fea6;hp=2964baefe6c1bd7be00703fe384f17d29000ff2a;hpb=99c58ee0ae2a848f982552e53feaf6d5cb9925e5;p=jalview.git diff --git a/src/jalview/schemes/TurnColourScheme.java b/src/jalview/schemes/TurnColourScheme.java index 2964bae..4f354a5 100755 --- a/src/jalview/schemes/TurnColourScheme.java +++ b/src/jalview/schemes/TurnColourScheme.java @@ -1,34 +1,62 @@ -/* -* Jalview - A Sequence Alignment Editor and Viewer -* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle -* -* This program 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 2 -* of the License, or (at your option) any later version. -* -* This program 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 this program; if not, write to the Free Software -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -*/ - -package jalview.schemes; - -import java.awt.*; - -public class TurnColourScheme extends ScoreColourScheme { - - public TurnColourScheme() { - super(ResidueProperties.turn,ResidueProperties.turnmin,ResidueProperties.turnmax); - } - - public Color makeColour(float c) { - return new Color(c,1-c,1-c); - } -} - +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ 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.schemes; + +import jalview.api.AlignViewportI; +import jalview.datamodel.AnnotatedCollectionI; + +import java.awt.Color; + +/** + * A graduated colour scheme based on residue turn propensity + */ +public class TurnColourScheme extends ScoreColourScheme +{ + private static final Color minScoreColour = new Color(0, 255, 255); + + private static final Color maxScoreColour = new Color(255, 0, 0); + + /** + * Constructor + */ + public TurnColourScheme() + { + super(JalviewColourScheme.Turn.toString(), ResidueProperties.aaIndex, + ResidueProperties.turn, minScoreColour, maxScoreColour); + } + + @Override + public boolean isPeptideSpecific() + { + return true; + } + + /** + * Returns a new instance of this colour scheme with which the given data may + * be coloured + */ + @Override + public ColourSchemeI getInstance(AlignViewportI view, + AnnotatedCollectionI coll) + { + return new TurnColourScheme(); + } +}