def run():
    """
    <Description>

    Args:
        param1: This is the first param.
    
    Returns:
        This is a description of what is returned.
    """
    default_base = "../../../Data/170321FEC/"
    base_dir = Pipeline._base_dir_from_cmd(default=default_base)
    step = Pipeline.Step.SANITIZED
    in_dir = Pipeline._cache_dir(base=base_dir, enum=Pipeline.Step.CORRECTED)
    out_dir = Pipeline._cache_dir(base=base_dir,enum=step)
    force = True
    max_n_pool = 6
    n_pool = max_n_pool
    kw_feather = RetinalUtil._def_kw_FEATHER()
    data = align_data(in_dir,out_dir,force=force,n_pool=n_pool,
                      **kw_feather)
    # plot all of the FEATHER information
    plot_subdir = Pipeline._plot_subdir(base_dir, step)
    PlotUtil._feather_plot(data,plot_subdir)