<feed xmlns='http://www.w3.org/2005/Atom'>
<title>genenetwork2/scripts/maintenance, branch lmdb-code/refactoring</title>
<subtitle>GeneNetwork (2nd generation)
</subtitle>
<id>http://git.genenetwork.org/genenetwork2/atom?h=lmdb-code%2Frefactoring</id>
<link rel='self' href='http://git.genenetwork.org/genenetwork2/atom?h=lmdb-code%2Frefactoring'/>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/'/>
<updated>2023-03-08T20:35:53+00:00</updated>
<entry>
<title>Add DataAnalyzer.py script to maintenance scripts</title>
<updated>2023-03-08T20:35:53+00:00</updated>
<author>
<name>zsloan</name>
</author>
<published>2023-03-08T20:35:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=638ee60bc2930ebe3b73814dab6aa3b124211345'/>
<id>urn:sha1:638ee60bc2930ebe3b73814dab6aa3b124211345</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Give speciesid single quotes like the other config_dic keys, just for consistency</title>
<updated>2022-06-03T19:32:14+00:00</updated>
<author>
<name>zsloan</name>
</author>
<published>2022-06-03T19:32:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=13450230b635194ffb6682e41d77cbaef2ca4b8b'/>
<id>urn:sha1:13450230b635194ffb6682e41d77cbaef2ca4b8b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow GenoFreezeId to be passed in configurations to load_genotypes.py</title>
<updated>2022-06-03T19:31:42+00:00</updated>
<author>
<name>zsloan</name>
</author>
<published>2022-06-03T19:31:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=f8ea5626edffbe358215f8c31bc257c9c8b7be34'/>
<id>urn:sha1:f8ea5626edffbe358215f8c31bc257c9c8b7be34</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use context manager with database connection</title>
<updated>2022-03-10T05:55:26+00:00</updated>
<author>
<name>Frederick Muriuki Muriithi</name>
</author>
<published>2022-03-10T05:55:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=4a7e2c1602ed82aabd7d04953067ba49cb1cebff'/>
<id>urn:sha1:4a7e2c1602ed82aabd7d04953067ba49cb1cebff</id>
<content type='text'>
Use the `with` context manager with database connections and cursors
to ensure that they are closed once they are no longer needed.

Where it was not feasible to use the `with` context manager without a
huge refactor/rewrite, the cursors and connections are closed manually.
</content>
</entry>
<entry>
<title>Fix load_phenotypes to run with GN2 latest</title>
<updated>2021-05-13T08:05:30+00:00</updated>
<author>
<name>Arthur Centeno</name>
</author>
<published>2021-05-13T08:05:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=0dd04c5ca0521f59f93b45663bdfd67c916a9f3c'/>
<id>urn:sha1:0dd04c5ca0521f59f93b45663bdfd67c916a9f3c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace map on strip with a list comprehension that calls strip()</title>
<updated>2020-10-28T22:23:22+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2020-10-28T22:23:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=a56e5e9d5d0c3f157599677e937deb0bbb71debb'/>
<id>urn:sha1:a56e5e9d5d0c3f157599677e937deb0bbb71debb</id>
<content type='text'>
* scripts/maintenance/readProbeSetSE_v7.py: In Python3 you can't map
string.strip on a list of strings. Instead use a list comprehension
and apply strip() on each element of the list.
* wqflask/wqflask/marker_regression/plink_mapping.py: Ditto.
* wqflask/wqflask/snp_browser/snp_browser.py: Ditto.
</content>
</entry>
<entry>
<title>Replace "string.split" &amp; "string.join" with python's inbuilt methods</title>
<updated>2020-08-26T22:42:41+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2020-08-26T22:18:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=357ca458695fbc60c97de3d1cdf89034a8722bc5'/>
<id>urn:sha1:357ca458695fbc60c97de3d1cdf89034a8722bc5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace tabs with spaces</title>
<updated>2020-08-26T19:23:40+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2020-08-26T19:23:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=768de71f09b116cad0f42c792c22a7dc410ea2f4'/>
<id>urn:sha1:768de71f09b116cad0f42c792c22a7dc410ea2f4</id>
<content type='text'>
* scripts/maintenance/readProbeSetMean_v7.py: Run python-autopep8 on this file.
</content>
</entry>
<entry>
<title>Remove extra whitespace(or add it) from comma separated items</title>
<updated>2020-08-19T00:57:05+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2020-08-19T00:57:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=db41cd49b6d8ccd2c3318209118ffe098bc9293e'/>
<id>urn:sha1:db41cd49b6d8ccd2c3318209118ffe098bc9293e</id>
<content type='text'>
See: &lt;https://docs.python.org/2/library/2to3.html#2to3fixer-urllib&gt;
</content>
</entry>
<entry>
<title>Make Python more idiomatic</title>
<updated>2020-08-19T00:45:49+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2020-08-19T00:45:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork2/commit/?id=3aaa28ea762c496eeb84e09e45194e3fd2a51673'/>
<id>urn:sha1:3aaa28ea762c496eeb84e09e45194e3fd2a51673</id>
<content type='text'>
Run `2to3-3.8 -f idioms -w .`

See: &lt;https://docs.python.org/2/library/2to3.html#2to3fixer-idioms&gt;
</content>
</entry>
</feed>
