aboutsummaryrefslogtreecommitdiff
path: root/gn3/db
diff options
context:
space:
mode:
authorzsloan2023-05-22 17:51:07 +0000
committerzsloan2023-05-22 17:51:07 +0000
commitb8af8e46c7da04aea1ad436b376e572de8a25aa4 (patch)
tree1004af73cfaa127ea6d1c9d7537f2ab8e556c536 /gn3/db
parenta3842b98615b5196724697fc482d3dea0849dcde (diff)
downloadgenenetwork3-b8af8e46c7da04aea1ad436b376e572de8a25aa4.tar.gz
Fix quotes when setting genofile_path
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/datasets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/datasets.py b/gn3/db/datasets.py
index 929707e..4352a2d 100644
--- a/gn3/db/datasets.py
+++ b/gn3/db/datasets.py
@@ -13,7 +13,7 @@ def retrieve_sample_list(group: str):
"""
samplelist = []
- genofile_path = f"{os.environ.get("GENENETWORK_FILES", "/home/gn2/production/genotype_files/")}/genotype/{group}.geno"
+ genofile_path = f"{os.environ.get('GENENETWORK_FILES', '/home/gn2/production/genotype_files/')}/genotype/{group}.geno"
if os.path.isfile(genofile_path):
with open(genofile_path, encoding="utf-8") as genofile:
line = ""