Skip to content
Snippets Groups Projects
Commit 9062f20b authored by Studer Gabriel's avatar Studer Gabriel
Browse files

temp commit

some output to debug issues in ci container
parent 458ff89e
No related branches found
No related tags found
No related merge requests found
...@@ -611,19 +611,23 @@ class HHblits: ...@@ -611,19 +611,23 @@ class HHblits:
sout, serr = job.communicate() sout, serr = job.communicate()
lines = sout.decode().splitlines() lines = sout.decode().splitlines()
ost.LogError("SecStruct stdout:")
for line in lines: for line in lines:
ost.LogError(line.strip())
ost.LogVerbose(line.strip()) ost.LogVerbose(line.strip())
if 'error' in line.lower(): if 'error' in line.lower():
raise RuntimeError('Predicting secondary structure for MSA '+ raise RuntimeError('Predicting secondary structure for MSA '+
'(%s) failed, on command: %s' % (a3m_file, line)) '(%s) failed, on command: %s' % (a3m_file, line))
ost.LogError("SecStruct stderr:")
lines = serr.decode().splitlines() lines = serr.decode().splitlines()
for line in lines: for line in lines:
ost.LogError(line.strip())
ost.LogError(line.strip()) ost.LogError(line.strip())
if 'error' in line.lower(): if 'error' in line.lower():
raise RuntimeError('Predicting secondary structure for MSA '+ raise RuntimeError('Predicting secondary structure for MSA '+
'(%s) failed, on command: %s' % (a3m_file, line)) '(%s) failed, on command: %s' % (a3m_file, line))
ost.LogError("SecStruct done")
return a3m_file return a3m_file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment