Skip to content

Commit 9bd4859

Browse files
committed
added sorting of the filename list returned by
sate.usersettingclasses.get_list_of_seq_filepaths_from_dir
1 parent 6321764 commit 9bd4859

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sate/usersettingclasses.py

+1
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ def get_list_of_seq_filepaths_from_dir(dir_path):
291291
seq_filename_list = glob.glob(dot_fas_glob) + glob.glob(dot_fasta_glob)
292292
if len(seq_filename_list) == 0:
293293
raise Exception("No files found with extension '.fas' or '.fasta' in directory: '%s'" % dir_path)
294+
seq_filename_list.sort()
294295
return seq_filename_list
295296

296297
class UserSettingsContainer(object):

0 commit comments

Comments
 (0)