diff options
author | BonfaceKilz | 2020-08-19 03:57:05 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-08-19 03:57:05 +0300 |
commit | db41cd49b6d8ccd2c3318209118ffe098bc9293e (patch) | |
tree | 01363468268316fe58335b958c992a9232d6b07e /scripts/maintenance/QTL_Reaper_v6.py | |
parent | 3aaa28ea762c496eeb84e09e45194e3fd2a51673 (diff) | |
download | genenetwork2-db41cd49b6d8ccd2c3318209118ffe098bc9293e.tar.gz |
Remove extra whitespace(or add it) from comma separated items
See: <https://docs.python.org/2/library/2to3.html#2to3fixer-urllib>
Diffstat (limited to 'scripts/maintenance/QTL_Reaper_v6.py')
-rwxr-xr-x | scripts/maintenance/QTL_Reaper_v6.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/maintenance/QTL_Reaper_v6.py b/scripts/maintenance/QTL_Reaper_v6.py index 2fbeb53b..35f2d1a1 100755 --- a/scripts/maintenance/QTL_Reaper_v6.py +++ b/scripts/maintenance/QTL_Reaper_v6.py @@ -7,7 +7,7 @@ import reaper import MySQLdb import time -con = MySQLdb.Connect(db='db_webqtl',user='username',passwd='', host="localhost") +con = MySQLdb.Connect(db='db_webqtl', user='username', passwd='', host="localhost") cursor = con.cursor() genotypeDir = '/gnshare/gn/web/genotypes/' @@ -102,7 +102,7 @@ for ProbeSetFreezeId in ProbeSetFreezeIds: kj += 1 if kj%1000==0: - print((ProbeSetFreezeId, InbredSets[InbredSetId],kj)) + print((ProbeSetFreezeId, InbredSets[InbredSetId], kj)) print(ProbeSetFreezeIds) |