A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
| /var/www/html/tables.gersteinlab.org/index.cgi in main_html(form=FieldStorage(None, None, [MiniFieldStorage('tabl...human'), MiniFieldStorage('value', 'index.php')])) |
115 return
|
116 elif (app.type == 'human_genomic'):
|
117 Display = HumanGenomicDisplay(app, key, conn)
|
118 elif (app.type == 'genomic'):
|
119 Display = GenomicDisplay(app, key, conn)
|
| Display = None, global HumanGenomicDisplay = <class DataDisplayer.HumanGenomicDisplay at 0xb7e998fc>, app = <DataCollector.Application object 'human'>, key = 'index.php', conn = <_mysql.connection open to 'localhost' at 860565c> |
| /var/www/html/tables.gersteinlab.org/DataDisplayer.py in __init__(self=<DataDisplayer.HumanGenomicDisplay instance at 0xb7eb382c>, Application=<DataCollector.Application object 'human'>, KeyValue='index.php', DatabaseConnection=<_mysql.connection open to 'localhost' at 860565c>) |
306 self.key = KeyValue
|
307 DC = DataCollector(self.conn)
|
308 self.fields = DC.collect_data(self.app, self.key, self.conn)
|
309 self.start_coordinate = find_data_of_type(self.fields,
|
310 'start_coordinate')
|
| self = <DataDisplayer.HumanGenomicDisplay instance at 0xb7eb382c>, self.fields undefined, DC = <DataCollector.DataCollector instance at 0xb7eb384c>, DC.collect_data = <bound method DataCollector.collect_data of <DataCollector.DataCollector instance at 0xb7eb384c>>, self.app = <DataCollector.Application object 'human'>, self.key = 'index.php', self.conn = <_mysql.connection open to 'localhost' at 860565c> |
| /var/www/html/tables.gersteinlab.org/DataCollector.py in collect_data(self=<DataCollector.DataCollector instance at 0xb7eb384c>, App=<DataCollector.Application object 'human'>, key='index.php', conn=<_mysql.connection open to 'localhost' at 860565c>) |
799 column_data.assign_data(key) #per database schema def
|
800 PrimaryRawData = column_data
|
801 self.build_data(PrimaryRawData)
|
802
|
803 # Pull actual data using Primary Key
|
| self = <DataCollector.DataCollector instance at 0xb7eb384c>, self.build_data = <bound method DataCollector.build_data of <DataCollector.DataCollector instance at 0xb7eb384c>>, PrimaryRawData = <DataCollector.RawDataField instance at 0xb7eb38cc> |