package com.srbenoit.microscopy;

/**
 * An enumeration of the data formats supported by the analysis package.
 */
public enum DataFormat {

    /** a raw sequence of multi-layer TIF files generated by MetaMorph */
    METAMORPH_TIF_SEQUENCE,

    /** a sequence of single-image TIF files */
    TIF_SEQUENCE,

    /** a sequence of single-image PNG files */
    PNG_SEQUENCE,

    /** a QuickTime video */
    MOV_VIDEO,

    /** a cell position spreadsheet (comma-separated values) */
    CELL_POS_CSV,

    /** a cell and tissue vector spreadsheet (comma-separated values) */
    TISSUE_POS_VEC_CSV,

    /** cell trajectory spreadsheet (comma-separated values) */
    TRAJECTORIES_CSV,

    /** graphs illustrating the trajectory analyses */
    TRAJECTORY_GRAPHS;
}
