Mercurial > repos > yating-l > hubarchivecreatortest
view util/index/ExternIndex.py @ 3:fa990284327b draft default tip
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit ac73da32d59853ca563e7939d05016a6f3a6899e-dirty
| author | yating-l |
|---|---|
| date | Mon, 30 Oct 2017 11:58:31 -0400 |
| parents | 85195e0d4b71 |
| 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"""
