view get_clustering_methods.py @ 11:2c2ad8af0a4e draft default tip

planemo upload for repository https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/phylogenetics/plant_tribes/assembly_post_processor commit 5b19bd262023af92bc9aaa65f75b5ec81814e90f-dirty
author greg
date Wed, 12 Jun 2024 19:29:25 +0000
parents ade62ce0029b
children
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, dir_name in enumerate(os.listdir(methods_dir)):
        options.append((dir_name, dir_name, i == 0))
    return options