Skip to content

Commit fcd61b5

Browse files
committed
fix: change default value of REQUIRE_FASTA_FILE to false
1 parent c028d4a commit fcd61b5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

app.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2339,8 +2339,6 @@ def post(self, project_id, submission_id):
23392339

23402340
split_on_fasta_headers = data.get('split_on_fasta_headers', True)
23412341

2342-
print('=== reading split on headers value ===', split_on_fasta_headers)
2343-
23442342
# Basic validation: check file counts
23452343
if len(tsv_files) != 1:
23462344
with get_db_cursor() as cursor:

settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
# VALIDATION
4343
ALLOW_DUPLICATE_ISOLATE_IDS = os.getenv('ALLOW_DUPLICATE_ISOLATE_IDS', 'true').lower() == 'true'
44-
REQUIRE_FASTA_FILE = os.getenv('REQUIRE_FASTA_FILE', 'true').lower() == 'true'
44+
REQUIRE_FASTA_FILE = os.getenv('REQUIRE_FASTA_FILE', 'false').lower() == 'true'
4545

4646
# Application Configuration
4747
PORT = int(os.getenv('PORT', 8000))

0 commit comments

Comments
 (0)