# HG changeset patch # User greg # Date 1536063961 14400 # Node ID b658e426d6e4f9ce2d5de35596a9c0a67314d7d1 # Parent c625c63bb51aaf9c96c844b24b27a8e03e1f2a73 Uploaded diff -r c625c63bb51a -r b658e426d6e4 get_clustering_methods.py --- a/get_clustering_methods.py Tue Sep 04 08:25:49 2018 -0400 +++ b/get_clustering_methods.py Tue Sep 04 08:26:01 2018 -0400 @@ -6,7 +6,6 @@ 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)) + for i, dir_name in enumerate(os.listdir(methods_dir)): + options.append((dir_name, dir_name, i == 0)) return options