| <type 'exceptions.AttributeError'> | Python 2.7.5: /usr/bin/python2 Sat Nov 29 04:53:25 2025 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
| /home/www/cgi-bin/MLCPP/MLCPP.py in |
| 327 Output = {} |
| 328 print "Content-type:text/html\r\n\r\n" |
| => 329 File = InputSequence() |
| 330 Output = Result(File) |
| 331 CgiPage(Output) |
| File = {}, InputSequence = <function InputSequence> |
| /home/www/cgi-bin/MLCPP/MLCPP.py in InputSequence() |
| 179 |
| 180 if Sequence != '': |
| => 181 Sequence = Sequence.split("\r\n") |
| 182 FASTA_format_seq(Sequence) |
| 183 for line in Sequence: |
| Sequence = None, Sequence.split undefined |
<type 'exceptions.AttributeError'>: 'NoneType' object has no attribute 'split'
args =
("'NoneType' object has no attribute 'split'",)
message =
"'NoneType' object has no attribute 'split'"