diff CADDSuite/galaxyconfigs/confFiles.py @ 0:8ce0411aaeb3

Uploaded CADDSuite version 0.94
author marcel
date Sun, 26 Jun 2011 14:01:09 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CADDSuite/galaxyconfigs/confFiles.py	Sun Jun 26 14:01:09 2011 -0400
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+"""
+XML format classes
+"""
+import data
+import logging
+from galaxy.datatypes.sniff import *
+import commands
+
+log = logging.getLogger(__name__)
+
+
+class ini( data.Text ):
+	file_ext = "ini"
+	def sniff( self, filename ):
+		self.no_sections = commands.getstatusoutput("grep -c \"\[Docking-Settings\]\" "+filename)
+		if (self.no_sections[0] == 0) & (self.no_sections[1] > 0):
+			return True
+		else:
+			self.no_sections = commands.getstatusoutput("grep -c \"\[ReferenceArea\" "+filename)
+			if (self.no_sections[0] == 0) & (self.no_sections[1] > 0):
+				return True
+			else:
+				self.no_sections = commands.getstatusoutput("grep -c \"\[PharmacophoreConstraint\" "+filename)
+				if (self.no_sections[0] == 0) & (self.no_sections[1] > 0):
+					return True
+				else:
+					return False
+
+
+
+