# HG changeset patch # User galaxyp # Date 1412088356 14400 # Node ID b3cf7d7dadc123a41eb2e98778af76301b3afb12 # Parent 4c820e82d22c1ac0f2f55776eda7025fc5174965 Uploaded diff -r 4c820e82d22c -r b3cf7d7dadc1 proteinpilot.py --- /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"