You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sys.exit("[ERROR] - Proteins in clustering belong to proteomes that are not present in the SpeciesClassification-file. Please add those proteoemes or recluster by omitting these proteomes.")
1903
+
exceptKeyErrorase:
1904
+
sys.exit("[ERROR] - Protein %s in clustering belong to proteomes that are not present in the SpeciesClassification-file. Please add those proteoemes or recluster by omitting these proteomes."% (e.args[0]))
print"[STATUS] - ETE can connect to X server (X11). Tree will be rendered."
2109
+
except:
2110
+
self.render_tree=False
2111
+
print"[WARN] - ETE cannot connect to X server (X11). No tree will be rendered."
2112
+
remove(test_tree_f)
2113
+
else:
2114
+
print"[STATUS] - No X server found. ETE can't render the tree. Consider using \'xvfb-run\' ..."
2109
2115
self.render_tree=False
2110
2116
2111
2117
defcheck_fuzzy_count(self, target_count):
@@ -2141,17 +2147,15 @@ def welcome_screen():
2141
2147
2142
2148
2143
2149
if__name__=="__main__":
2144
-
__version__="0.8.2"
2150
+
__version__="0.8.3"
2145
2151
welcome_screen()
2146
2152
args=docopt(__doc__)
2147
-
# Sanitise input
2148
2153
inputObj=InputObj(args)
2149
2154
ifinputObj.tree_f:
2150
2155
try:
2151
2156
importete3
2152
-
except:
2153
-
sys.exit("[ERROR] : Module \'ete3\' was not found. Please install \'ete3\' using \'pip install ete3\'")
2154
-
2157
+
exceptImportError:
2158
+
sys.exit("[ERROR] : Module \'ete3\' was not found. Please install \'ete3\' using \'pip install ete3\'\n/tPlotting of trees requires additional dependencies:\n\t- PyQt4\n\t")
0 commit comments