added try except incase collada2gltf is not there
This commit is contained in:
parent
726ef5b50a
commit
9abf07a53a
|
@ -80,7 +80,6 @@ def RemoveAllFilesMatching(directory,pattern):
|
||||||
FileList = glob.glob(directory+"/*"+pattern)
|
FileList = glob.glob(directory+"/*"+pattern)
|
||||||
for FilePath in FileList:
|
for FilePath in FileList:
|
||||||
try:
|
try:
|
||||||
print(FilePath)
|
|
||||||
os.remove(FilePath)
|
os.remove(FilePath)
|
||||||
except:
|
except:
|
||||||
print("Error in removing misc file")
|
print("Error in removing misc file")
|
||||||
|
@ -138,7 +137,14 @@ with tempfile.TemporaryDirectory() as directory:
|
||||||
copyfile("report.pdf",os.path.join(reportDirectory,(str(jobID)+".pdf")))
|
copyfile("report.pdf",os.path.join(reportDirectory,(str(jobID)+".pdf")))
|
||||||
get3DModel(receptor_name,ligand_name.replace(".pdbqt","_out.pdbqt"))
|
get3DModel(receptor_name,ligand_name.replace(".pdbqt","_out.pdbqt"))
|
||||||
os.system("collada2gltf -i model.dae -o model.gltf")
|
os.system("collada2gltf -i model.dae -o model.gltf")
|
||||||
|
try:
|
||||||
copyfile("model.gltf",os.path.join(modelDirectory,(str(jobID)+".gltf")))
|
copyfile("model.gltf",os.path.join(modelDirectory,(str(jobID)+".gltf")))
|
||||||
|
except:
|
||||||
|
print("Does not have Collada2GLTF Installed")
|
||||||
|
email(zi)
|
||||||
|
mycursor.execute('UPDATE curieweb set done=1 where id="%s"' % (jobID))
|
||||||
|
mycon.commit()
|
||||||
|
exit(0)
|
||||||
arch = os.popen("uname -m").read()
|
arch = os.popen("uname -m").read()
|
||||||
print("Generating 3D Model")
|
print("Generating 3D Model")
|
||||||
if "x86" in arch:
|
if "x86" in arch:
|
||||||
|
|
|
@ -221,7 +221,6 @@ def RemoveAllFilesMatching(directory,pattern):
|
||||||
FileList = glob.glob(directory+"/*"+pattern)
|
FileList = glob.glob(directory+"/*"+pattern)
|
||||||
for FilePath in FileList:
|
for FilePath in FileList:
|
||||||
try:
|
try:
|
||||||
print(FilePath)
|
|
||||||
os.remove(FilePath)
|
os.remove(FilePath)
|
||||||
except:
|
except:
|
||||||
print("Error in removing misc file")
|
print("Error in removing misc file")
|
||||||
|
|
Loading…
Reference in New Issue