Mercurial > repos > rmarenco > hubarchivecreator
comparison 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 |
comparison
equal
deleted
inserted
replaced
28:6aa28a85cc38 | 29:7e8a8b732db3 |
---|---|
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 |