
org.snpeff.interval.ProteinStructuralInteractionLocus 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;
import org.snpeff.snpEffect.EffectType;
/**
* Protein interaction: An amino acid that is "in contact" with another amino acid.
* This can be either within the same protein or interacting with another protein.
* Evidence form PDB crystallized structures
*
* @author pablocingolani
*/
public class ProteinStructuralInteractionLocus extends ProteinInteractionLocus {
private static final long serialVersionUID = 1416019843839053485L;
public ProteinStructuralInteractionLocus() {
super();
type = EffectType.PROTEIN_STRUCTURAL_INTERACTION_LOCUS;
}
public ProteinStructuralInteractionLocus(Transcript parent, int start, int end, String id) {
super(parent, start, end, id);
type = EffectType.PROTEIN_STRUCTURAL_INTERACTION_LOCUS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy