
org.snpeff.interval.MarkerParentId 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.interval;
/**
* This is a marker used as a 'fake' parent during data serialization
*
* @author pcingola
*/
public class MarkerParentId extends Marker {
int parentId;
public MarkerParentId(int parentId) {
this.parentId = parentId;
}
public int getParentId() {
return parentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy