mev-4.0.01/source/org/tigr/microarray/mev/cgh/CGHAlgorithms/NumberOfAlterations/GeneAlterations/GeneAmplifications.java

Code
Comments
Other
Rev Date Author Line
2 26 Feb 07 jari 1 /*
2 26 Feb 07 jari 2  * GeneAmplifications.java
2 26 Feb 07 jari 3  *
2 26 Feb 07 jari 4  * Created on May 21, 2003, 10:21 PM
2 26 Feb 07 jari 5  */
2 26 Feb 07 jari 6
2 26 Feb 07 jari 7 package org.tigr.microarray.mev.cgh.CGHAlgorithms.NumberOfAlterations.GeneAlterations;
2 26 Feb 07 jari 8
2 26 Feb 07 jari 9 import org.tigr.microarray.mev.cgh.CGHDataObj.FlankingRegion;
2 26 Feb 07 jari 10 import org.tigr.microarray.mev.cluster.gui.IFramework;
2 26 Feb 07 jari 11 /**
2 26 Feb 07 jari 12  *
2 26 Feb 07 jari 13  * @author  Adam Margolin
2 26 Feb 07 jari 14  * @author Raktim Sinha
2 26 Feb 07 jari 15  */
2 26 Feb 07 jari 16
2 26 Feb 07 jari 17 public class GeneAmplifications extends GeneAlterations{
2 26 Feb 07 jari 18
2 26 Feb 07 jari 19     /** Creates a new instance of GeneAmplifications */
2 26 Feb 07 jari 20     public GeneAmplifications() {
2 26 Feb 07 jari 21         nodeName = "GeneAmplifications";
2 26 Feb 07 jari 22     }
2 26 Feb 07 jari 23
2 26 Feb 07 jari 24     public GeneAmplifications(IFramework framework) {
2 26 Feb 07 jari 25       super(framework);
2 26 Feb 07 jari 26         nodeName = "GeneAmplifications";
2 26 Feb 07 jari 27     }
2 26 Feb 07 jari 28
2 26 Feb 07 jari 29     protected int getAlterationType(){
2 26 Feb 07 jari 30         return FlankingRegion.AMPLIFICATION;
2 26 Feb 07 jari 31     }
2 26 Feb 07 jari 32 }