
org.snpeff.stats.plot.GoogleGeneRegionNumExonsChart 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.stats.plot;
import java.util.ArrayList;
import org.snpeff.interval.Exon;
import org.snpeff.interval.Intergenic;
import org.snpeff.interval.Intron;
import org.snpeff.stats.CoverageByType;
public class GoogleGeneRegionNumExonsChart extends GoogleGeneRegionChart {
int exons;
public GoogleGeneRegionNumExonsChart(CoverageByType coverageByType, String name, int exons) {
super(coverageByType, name);
this.exons = exons;
}
void initTypes() {
ArrayList typeList = new ArrayList();
boolean exonsAdded = false;
for (String type : DEFAULT_TYPES) {
// Add exons or introns?
if (type.equals(Exon.class.getSimpleName()) || type.equals(Intron.class.getSimpleName())) {
if (!exonsAdded) {
// Add all exons and introns
for (int ex = 1; ex <= exons; ex++) {
typeList.add(Exon.class.getSimpleName() + ":" + ex + ":" + exons);
if (ex < exons) typeList.add(Intron.class.getSimpleName() + ":" + ex + ":" + exons);
}
exonsAdded = true;
}
} else if (type.equals(Intergenic.class.getSimpleName())) {
// Do not add intergenic
} else typeList.add(type);
}
// convert to array
types = typeList.toArray(new String[0]);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy