diff util/index/ExternIndex.py @ 29:7e8a8b732db3 draft

planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 1a81ebd0ddea950b84af3fc830e9267a4814b29f
author yating-l
date Wed, 16 May 2018 18:04:20 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/util/index/ExternIndex.py	Wed May 16 18:04:20 2018 -0400
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+import collections
+import abc
+from abc import ABCMeta
+
+class ExternIndex(object):
+    __metaclass__ = ABCMeta
+
+    @abc.abstractmethod
+    def __init__(self):
+        """init"""
+    
+    @abc.abstractmethod
+    def setExtLink(self):
+        """set external link"""
+        
\ No newline at end of file