aboutsummaryrefslogtreecommitdiff
path: root/scripts/maintenance/Update_Case_Attributes_MySQL_tab.py
blob: a3cd1c359b02df08c9973073b1c4caa37ba74a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python2
########################################################################
# Last Updated Apr 11, 2016 By Arthur and Zach
########################################################################
import string
import sys
import MySQLdb
import getpass
import time
import csv
########################################################################

with MySQLdb.connect(
        host='localhost', user='username', passwd='', db='db_webqtl') as mydb:
    with mydb.cursor() as cursor:

        csv_data = csv.reader(file('GN711_pvalues.txt'), delimiter ="\t")
        for row in csv_data:
            cursor.execute(
                """UPDATE ProbeSetXRef SET pValue = %s WHERE ProbeSetFreezeId = %s AND ProbeSetId = %s """,
                (row))
print("Done")