public final static boolean ALLOW_DDBJ_BLAST = false;
public final static String PRG_NAME = "Archaeopteryx";
final static String VERSION = "0.9893 beta";
- final static String PRG_DATE = "140801";
+ final static String PRG_DATE = "140803";
final static String DEFAULT_CONFIGURATION_FILE_NAME = "_aptx_configuration_file";
final static String[] DEFAULT_FONT_CHOICES = { "Arial", "Helvetica",
"Verdana", "Tahoma", "Dialog", "Lucida Sans", "SansSerif", "Sans-serif", "Sans" };
}
if ( getControlPanel().isShowVectorData() && node.getNodeData().getVector() != null && node.getNodeData().getVector().size() > 0 ) {
- sum += RenderableVector.VECTOR_DEFAULT_WIDTH + 10;
+ if ( getConfiguration() != null ) {
+ sum += getConfiguration().getVectorDataWidth() + 10;
+ }
+ else {
+ sum += RenderableVector.VECTOR_DEFAULT_WIDTH + 10;
+ }
}
if ( sum >= max_length ) {
public final class RenderableVector implements RenderablePhylogenyData {
final static int VECTOR_DEFAULT_HEIGHT = 12;
- final static public int VECTOR_DEFAULT_WIDTH = 120;
+ public final static int VECTOR_DEFAULT_WIDTH = 120;
private double _rendering_factor_width = 1.0;
private List<Double> _values;
private final Rectangle2D _rectangle = new Rectangle2D.Float();
if ( _instance == null ) {
_instance = new RenderableVector();
}
- //_instance.setRenderingHeight( VECTOR_DEFAULT_HEIGHT );
+
_instance._values = values;
if ( configuration != null ) {