Skip to content

Commit 3309494

Browse files
committed
.fa to .fasta in GL-gen-metagenomics-JIRA
1 parent b6218bf commit 3309494

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

GL-gen-metagenomics-JIRA

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,13 @@ def gen_and_write_out_filenames_table(sample_names):
183183

184184
if os.path.exists(bins_dir + "bins-overview.tsv"):
185185
bins_col = ["bins-overview.tsv"]
186-
bins_dir_files = [file for file in os.listdir(bins_dir) if file.endswith(".fa")]
186+
bins_dir_files = [file for file in os.listdir(bins_dir) if file.endswith(".fasta")]
187187
else:
188188
bins_col = [""]
189189

190190
if os.path.exists(MAGs_dir + "MAGs-overview.tsv"):
191191
MAGs_col = ["MAGs-overview.tsv"]
192-
MAGs_dir_files = [file for file in os.listdir(MAGs_dir) if file.endswith(".fa")]
192+
MAGs_dir_files = [file for file in os.listdir(MAGs_dir) if file.endswith(".fasta")]
193193
else:
194194
MAGs_col = [""]
195195

GL-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
version='1.0.04'
3+
version='1.0.05'
44

55
GREEN='\033[0;32m'
66
NC='\033[0m'

0 commit comments

Comments
 (0)