Mercurial > repos > galaxyp > proteinpilot
changeset 6:b3cf7d7dadc1
Uploaded
| author | galaxyp | 
|---|---|
| date | Tue, 30 Sep 2014 10:45:56 -0400 | 
| parents | 4c820e82d22c | 
| children | ffbfff887a03 | 
| files | proteinpilot.py | 
| diffstat | 1 files changed, 13 insertions(+), 0 deletions(-) [+] | 
line wrap: on
 line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/proteinpilot.py Tue Sep 30 10:45:56 2014 -0400 @@ -0,0 +1,13 @@ +from galaxy.datatypes.binary import Binary +from galaxy.datatypes.xml import GenericXml + + +class Group( Binary ): + """Class describing a ProteinPilot group files""" + file_ext = "group" + +Binary.register_unsniffable_binary_ext('group') + + +class ProteinPilotXml( GenericXml ): + file_ext = "proteinpilot.xml"
