Mercurial > repos > marcel > caddsuite_linux_x86_64
comparison CADDSuite/galaxyconfigs/confFiles.py @ 3:ff6df146c0d5
Uploaded
author | marcel |
---|---|
date | Sun, 26 Jun 2011 13:53:57 -0400 |
parents | bac3c274238f |
children |
comparison
equal
deleted
inserted
replaced
2:bbc4a2c1d276 | 3:ff6df146c0d5 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 """ | |
3 XML format classes | |
4 """ | |
5 import data | |
6 import logging | |
7 from galaxy.datatypes.sniff import * | |
8 import commands | |
9 | |
10 log = logging.getLogger(__name__) | |
11 | |
12 | |
13 class ini( data.Text ): | |
14 file_ext = "ini" | |
15 def sniff( self, filename ): | |
16 self.no_sections = commands.getstatusoutput("grep -c \"\[Docking-Settings\]\" "+filename) | |
17 if (self.no_sections[0] == 0) & (self.no_sections[1] > 0): | |
18 return True | |
19 else: | |
20 self.no_sections = commands.getstatusoutput("grep -c \"\[ReferenceArea\" "+filename) | |
21 if (self.no_sections[0] == 0) & (self.no_sections[1] > 0): | |
22 return True | |
23 else: | |
24 self.no_sections = commands.getstatusoutput("grep -c \"\[PharmacophoreConstraint\" "+filename) | |
25 if (self.no_sections[0] == 0) & (self.no_sections[1] > 0): | |
26 return True | |
27 else: | |
28 return False | |
29 | |
30 | |
31 | |
32 |