changeset 0:7c866f50b1a3

Uploaded
author sblanck
date Wed, 13 May 2015 05:25:00 -0400
parents
children 23c2cd7701c4
files datatypesmpa.py
diffstat 1 files changed, 32 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/datatypesmpa.py	Wed May 13 05:25:00 2015 -0400
@@ -0,0 +1,32 @@
+import galaxy.datatypes.binary
+from galaxy.datatypes.binary import Binary
+
+class Cel( Binary ):
+    """Class for generic CEL binary format"""
+    file_ext = "cel"
+
+Binary.register_unsniffable_binary_ext("cel")
+
+class Cdf( Binary ):
+    """Class for generic cdf binary format"""
+    file_ext = "cdf"
+
+Binary.register_unsniffable_binary_ext("cdf")
+
+class Ufl( Binary ):
+    """Class for generic ufl binary format"""
+    file_ext = "ufl"
+
+Binary.register_unsniffable_binary_ext("ufl")
+
+class Ugp( Binary ):
+    """Class for generic ugp binary format"""
+    file_ext = "ugp"
+
+Binary.register_unsniffable_binary_ext("ugp")
+
+class Acs( Binary ):
+    """Class for generic acs binary format"""
+    file_ext = "acs"
+
+Binary.register_unsniffable_binary_ext("acs")
\ No newline at end of file