view get_clustering_methods.py @ 61:d53837d5dc99 draft

Uploaded
author greg
date Tue, 04 Sep 2018 08:37:56 -0400
parents f3e6fb5acc15
children 83860903ac21
line wrap: on
line source

import os


def get_clustering_method_options(file_path):
    options = []
    if not os.path.isdir(file_path):
        return options
    methods_dir = os.path.join(file_path, "alns")
    for i, file_name in enumerate(os.listdir(methods_dir)):
        full_path = os.path.join(file_path, file_name)
        options.append((file_name, full_path, i == 0))
    return options