File size: 588 Bytes
4a8b134 a429c33 4a8b134 a429c33 4a8b134 a429c33 4a8b134 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Drug Repurposing API - Environment Configuration
# Copy this file to .env and customize values as needed
# Application Settings
DEBUG=True
LOG_LEVEL=INFO
# Server Configuration
HOST=0.0.0.0
PORT=8000
# Model Configuration
USE_MOCK_MODEL=False
USE_MOCK_DRUGS=False
DEEP_PURPOSE_MODEL=MPNN_CNN_BindingDB
# TDC Configuration
TDC_DATASET=Half_Life_Obach
# External APIs
OPENTARGETS_API_URL=https://api.platform.opentargets.org/api/v4/graphql
UNIPROT_API_URL=https://rest.uniprot.org/uniprotkb/search
# Screening Parameters
DEFAULT_TOP_TARGETS=10
DEFAULT_TOP_RESULTS=15
MAX_TARGETS=50
|