
org.snpeff.svg.SvgCds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SnpEff Show documentation
Show all versions of SnpEff Show documentation
Variant annotation and effect prediction package.
The newest version!
package org.snpeff.svg;
import org.snpeff.interval.Cds;
/**
* Create an SVG representation of a Marker
*/
public class SvgCds extends Svg {
Cds cds;
public SvgCds(Cds cds, Svg svg) {
super(cds, svg);
this.cds = cds;
baseY = svg.baseY;
rectColorFill = "#00ff00";
}
@Override
public String toString() {
return marker();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy