<type 'exceptions.IOError'> | Python 2.7.12: /usr/bin/python Mon Mar 31 23:49:47 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.
/var/www/html/GlobPlot2/cgi-bin/cgiDict.py in |
33 if key == 'process': |
34 DisplayHeader() |
=> 35 Main(cgidict) |
36 DisplayFooter() |
37 else: |
Main = <function Main>, cgidict = {'SP_entry': 'Q7SA19', 'key': 'process'} |
/var/www/html/GlobPlot2/modules/process.py in Main(cgidict={'SP_entry': 'Q7SA19', 'key': 'process'}) |
31 do_dydx, do_raw, do_smart, entry, Sequence_string, do_invert, plot_title, do_casp = CGIdict2vars(cgidict) |
32 #Read user input |
=> 33 seq, desc, seqfile = getUserInput(entry ,Sequence_string, sessionstamp, dataPath) |
34 propensity_scale = propensities.par_sets[params] |
35 niceName = propensities.nicename[params] |
seq undefined, desc undefined, seqfile undefined, global getUserInput = <function getUserInput>, entry = 'Q7SA19', Sequence_string = 'none', global sessionstamp = '214947Z@sN@38AAAEAAAVO43QAAAAJ', global dataPath = '/var/www/html/linding/GlobPlot2/data/' |
/var/www/html/GlobPlot2/modules/UserInput.py in getUserInput(entry='Q7SA19', Sequence_string='none', stamp='214947Z@sN@38AAAEAAAVO43QAAAAJ', Path='/var/www/html/linding/GlobPlot2/data/') |
51 sys.exit() |
52 SeqFileName = Path + entry + '_' +stamp + '.seq' |
=> 53 SeqFile = open(SeqFileName,'w') |
54 SeqFile.write(Seq+'\n') |
55 else: |
SeqFile undefined, builtin open = <built-in function open>, SeqFileName = '/var/www/html/linding/GlobPlot2/data/Q7SA19_214947Z@sN@38AAAEAAAVO43QAAAAJ.seq' |
<type 'exceptions.IOError'>: [Errno 28] No space left on device: '/var/www/html/linding/GlobPlot2/data/Q7SA19_214947Z@sN@38AAAEAAAVO43QAAAAJ.seq'
args =
(28, 'No space left on device')
errno =
28
filename =
'/var/www/html/linding/GlobPlot2/data/Q7SA19_214947Z@sN@38AAAEAAAVO43QAAAAJ.seq'
message =
''
strerror =
'No space left on device'