annotate 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 |
|
rev |
line source |
6
|
1 import os
|
|
2
|
|
3
|
|
4 def get_clustering_method_options(file_path):
|
|
5 options = []
|
|
6 if not os.path.isdir(file_path):
|
|
7 return options
|
|
8 methods_dir = os.path.join(file_path, "alns")
|
7
|
9 for i, dir_name in enumerate(os.listdir(methods_dir)):
|
|
10 options.append((dir_name, dir_name, i == 0))
|
6
|
11 return options
|