diff options
author | BonfaceKilz | 2020-10-29 01:35:12 +0300 |
---|---|---|
committer | GitHub | 2020-10-29 01:35:12 +0300 |
commit | f3e01550a63238688a12152ab560db6d02e09a82 (patch) | |
tree | e43b6e543adad575b23fa7b3532e1c5efd47a005 /scripts/maintenance | |
parent | 70ac7df94067a2d45a6d3498a85fe27014b159d6 (diff) | |
parent | a56e5e9d5d0c3f157599677e937deb0bbb71debb (diff) | |
download | genenetwork2-f3e01550a63238688a12152ab560db6d02e09a82.tar.gz |
Merge pull request #471 from BonfaceKilz/bug/replace-map-on-strip-method
Bug/Replace map on strip with a list comprehension that calls strip()
Diffstat (limited to 'scripts/maintenance')
-rwxr-xr-x | scripts/maintenance/readProbeSetSE_v7.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/maintenance/readProbeSetSE_v7.py b/scripts/maintenance/readProbeSetSE_v7.py index edd9e7b0..2cfe2e07 100755 --- a/scripts/maintenance/readProbeSetSE_v7.py +++ b/scripts/maintenance/readProbeSetSE_v7.py @@ -72,14 +72,14 @@ GeneList = [] isCont = 1 header = fp.readline() header = header.strip().split('\t') -header = list(map(string.strip, header)) +header = [item.strip() for item in header] nfield = len(header) line = fp.readline() kj = 0 while line: line2 = line.strip().split('\t') - line2 = list(map(string.strip, line2)) + line2 = [item.strip() for item in line2] if len(line2) != nfield: isCont = 0 print(("Error : " + line)) @@ -110,7 +110,7 @@ isCont = 1 fp.seek(0) header = fp.readline() header = header.strip().split('\t') -header = list(map(string.strip, header)) +header = [item.strip() for item in header] header = list(map(translateAlias, header)) header = header[dataStart:] Ids = [] |