comparison util/index/ExternIndex.py @ 6:237707a6b74d draft

planemo upload for repository https://github.com/Yating-L/jbrowse-archive-creator.git commit a500f7ab2119cc5faaf80393bd87428389d06880-dirty
author yating-l
date Thu, 15 Feb 2018 17:05:05 -0500
parents
children
comparison
equal deleted inserted replaced
5:e762f4b9e4bd 6:237707a6b74d
1 #!/usr/bin/python
2 import collections
3 import abc
4 from abc import ABCMeta
5
6 class ExternIndex(object):
7 __metaclass__ = ABCMeta
8
9 @abc.abstractmethod
10 def __init__(self):
11 """init"""
12
13 @abc.abstractmethod
14 def setExtLink(self):
15 """set external link"""
16