All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snpeff.svg.Svg Maven / Gradle / Ivy

The newest version!
package org.snpeff.svg;

import org.snpeff.interval.Cds;
import org.snpeff.interval.Exon;
import org.snpeff.interval.Gene;
import org.snpeff.interval.IntervalAndSubIntervals;
import org.snpeff.interval.Intron;
import org.snpeff.interval.Marker;
import org.snpeff.interval.Transcript;

/**
 * Create an SVG representation of a Marker
 */
public class Svg {

	public static final int DEFAULT_SIZE_X = 1000;
	public static final int DEFAULT_SIZE_Y = 1000;
	public static final int DEFAULT_BASE_Y = 10;

	public static final String LINE_COLOR_STROKE = "#000000";
	public static final int LINE_STROKE_WIDTH = 1;

	public static final String RECT_COLOR_FILL = "#FFFFFF";
	public static final String RECT_COLOR_STROKE = "#000000";
	public static final int RECT_HEIGHT = 20;
	public static final int RECT_STROKE_WIDTH = 1;

	public static final int TEXT_SIZE = 10;
	public static final String TEXT_STYLE = "font-family: Arial; font-size:" + TEXT_SIZE + ";";

	public static boolean debug = false;

	int baseY;
	int lineStrokeWidth;
	String lineColor;
	Marker m;
	int nextBaseY; // BaseY for next item
	int posStart, posEnd; // Chromosome positions
	int rectHeight;
	String rectColorFill;
	String rectColorStroke;
	double scaleX;
	int sizeX, sizeY; // Canvas size

	public static Svg factory(Marker m, Svg svg) {
		switch (m.getType()) {
		case EXON:
			return new SvgExon((Exon) m, svg);

		case CDS:
			return new SvgCds((Cds) m, svg);

		case INTRON:
			return new SvgIntron((Intron) m, svg);

		case GENE:
			return new SvgGene((Gene) m, svg);

		case TRANSCRIPT:
			return new SvgTranscript((Transcript) m, svg);

		default:
			return new Svg(m, svg);
		}
	}

	public Svg() {
		sizeX = DEFAULT_SIZE_X;
		sizeY = DEFAULT_SIZE_Y;
		baseY = DEFAULT_BASE_Y;

		lineStrokeWidth = LINE_STROKE_WIDTH;
		lineColor = LINE_COLOR_STROKE;

		rectColorFill = RECT_COLOR_FILL;
		rectColorStroke = RECT_COLOR_STROKE;
		rectHeight = RECT_HEIGHT;
	}

	public Svg(Marker m, Svg svg) {
		this();
		this.m = m;

		if (svg != null) {
			posStart = svg.posStart;
			posEnd = svg.posEnd;
			scaleX = svg.scaleX;
			baseY = svg.nextBaseY;
		} else setScaleX();

		nextBaseY = baseY + RECT_HEIGHT * 2;
	}

	public String close() {
		return "\n";
	}

	double end() {
		return (m.getEnd() - posStart) * scaleX;
	}

	public String hline(int y) {
		return line(start(), baseY + y, end(), baseY + y);
	}

	public String id() {
		double y = baseY - rectHeight / 2;
		return text(start(), y, m.getId());
	}

	String line(double x1, double y1, double x2, double y2) {
		String lineStyle = "stroke:" + lineColor //
				+ ";stroke-width:" + lineStrokeWidth //
		;

		return "\n";
	}

	@SuppressWarnings("rawtypes")
	public String marker() {
		StringBuilder sb = new StringBuilder();
		sb.append(rectangle());

		if (m instanceof IntervalAndSubIntervals) {
			IntervalAndSubIntervals msubs = (IntervalAndSubIntervals) m;
			for (Object o : msubs) {
				Marker sub = (Marker) o;
				Svg svg = factory(sub, this);
				sb.append("\t" + svg);
			}
		}

		return sb.toString();
	}

	public String markerId() {
		return marker() + id();
	}

	public String open() {
		return "\n";
	}

	double pos2coord(int pos) {
		return (pos - posStart) * scaleX;
	}

	public String rectangle() {
		double w = size();
		double h = rectHeight;
		double x = start();
		double y = baseY;
		return rectangle(x, y, w, h, false);
	}

	public String rectangle(double x, double y, double w, double h, boolean empty) {
		String rectStyle = "fill:" + (empty ? "none" : rectColorFill)//
				+ ";stroke:" + rectColorStroke //
				+ ";stroke-width:" + RECT_STROKE_WIDTH //
		;

		return "\n";
	}

	public void setBaseY(int baseY) {
		this.baseY = baseY;
	}

	void setScaleX() {
		posStart = m.getStart();
		posEnd = m.getEnd();
		if (posEnd <= posStart) throw new RuntimeException("Marker 'start' after 'end': Unsupported!");
		scaleX = sizeX / ((double) (posEnd - posStart));
	}

	double size() {
		return m.size() * scaleX;
	}

	double start() {
		return (m.getStart() - posStart) * scaleX;
	}

	public String text(double x, double y, String str) {
		return "" //
				+ str //
				+ "\n" //
		;
	}

	@Override
	public String toString() {
		return marker();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy