A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/data/apache/cgi-bin/hgGeneGraph in showGraphBrowser() |
1372 conn = sqlConnect(GGDB)
|
1373
|
=> 1374 graphLinks, lowLinks = buildGraph(conn, gene, geneCount, MINSUPP, addNeighbors)
|
1375 weightedLinks, minAbsCount = flattenLink(graphLinks)
|
1376
|
graphLinks undefined, lowLinks undefined, global buildGraph = <function buildGraph>, conn = <_mysql.connection open to 'localhost' at 14e9950>, gene = 'C7ORF25', geneCount = 25, global MINSUPP = 2, addNeighbors = True |
/data/apache/cgi-bin/hgGeneGraph in buildGraph(conn=<_mysql.connection open to 'localhost' at 14e9950>, gene='C7ORF25', geneCount=25, minSupp=2, addNeighbors=True) |
546 # add the high links back to the graph
|
547 for pair, linkData in otherLinks.iteritems():
|
=> 548 assert(pair not in graphLinks)
|
549 graphLinks[pair] = linkData
|
550
|
pair = ('C7orf25', 'FRA10AC1'), graphLinks = defaultdict(<type 'set'>, {('C7orf25', 'RPL36AL'...', 'C7orf25'): (0, ['hprd'], ['ppi'], 3345, '')}) |