--> -->
<type 'exceptions.TypeError'> | Python 2.7.12: /usr/bin/python2.7 Sun Sep 8 12:00:33 2024 |
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/crispor/crispor.py in main() |
8103 #print ("Content-type: text/html\n")
|
8104 if 'REQUEST_METHOD' in os.environ and sys.argv[-1] != "--worker":
|
=> 8105 mainCgi()
|
8106 else:
|
8107 mainCommandLine()
|
global mainCgi = <function mainCgi> |
/var/www/html/crispor/crispor.py in mainCgi() |
8088 return
|
8089
|
=> 8090 printBody(params) # main dispatcher, branches based on the params dictionary
|
8091
|
8092 printTeforBodyEnd()
|
global printBody = <function printBody>, params = {'batchId': 'gYvicTzp9e5VPFC9YwLR', 'otPrimers': '1', 'pamId': 's39+'} |
/var/www/html/crispor/crispor.py in printBody(params={'batchId': 'gYvicTzp9e5VPFC9YwLR', 'otPrimers': '1', 'pamId': 's39+'}) |
6373 primerDetailsPage(params)
|
6374 elif "otPrimers" in params:
|
=> 6375 otPrimerPage(params)
|
6376 elif "showMh" in params:
|
6377 microHomPage(params)
|
global otPrimerPage = <function otPrimerPage>, params = {'batchId': 'gYvicTzp9e5VPFC9YwLR', 'otPrimers': '1', 'pamId': 's39+'} |
/var/www/html/crispor/crispor.py in otPrimerPage(params={'batchId': 'gYvicTzp9e5VPFC9YwLR', 'otPrimers': '1', 'pamId': 's39+'}) |
5856 primerTable = []
|
5857 for otScore, seqName, primerInfo in sorted(scoredPrimers, reverse=True):
|
=> 5858 otScore = "%.3f" % otScore
|
5859 lSeq, lTm, lPos, rSeq, rTm, rPos = primerInfo
|
5860 if batchName!="":
|
otScore = None |
<type 'exceptions.TypeError'>: float argument required, not NoneType
args =
('float argument required, not NoneType',)
message =
'float argument required, not NoneType'