net.maizegenetics.util.TableReportBuilder 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.
/*
* TableReportBuilder
*
* Created on Aug 9, 2014
*/
package net.maizegenetics.util;
import java.io.BufferedWriter;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.List;
import org.apache.log4j.Logger;
/**
*
* @author Terry Casstevens
*/
public class TableReportBuilder {
private static final Logger myLogger = Logger.getLogger(TableReportBuilder.class);
private static final String DELIMITER = "\t";
private final String myTableName;
private final Object[] myColumnNames;
private final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy