net.maizegenetics.analysis.association.AssociationConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tassel Show documentation
Show all versions of tassel Show documentation
TASSEL is a software package to evaluate traits associations, evolutionary patterns, and linkage
disequilibrium.
The newest version!
/*
* AssociationConstants
*
* Created on Mar 11, 2015
*/
package net.maizegenetics.analysis.association;
/**
*
* @author Terry Casstevens
*/
public class AssociationConstants {
public static final String STATS_HEADER_CHR = "Chr";
public static final String STATS_HEADER_POSITION = "Pos";
public static final String STATS_HEADER_P_VALUE = "p";
public static final String STATS_HEADER_MARKER = "Marker";
public static final String STATS_HEADER_TRAIT = "Trait";
private AssociationConstants() {
}
}