Mercurial > repos > yating-l > hubarchivecreator
view util/index/ExternIndex.py @ 84:cb62314a6297 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit ac73da32d59853ca563e7939d05016a6f3a6899e-dirty
| author | yating-l |
|---|---|
| date | Fri, 03 Nov 2017 17:08:19 -0400 |
| parents | 0bc486356e2a |
| children |
line wrap: on
line source
#!/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"""
