Mercurial > repos > yating-l > jbrowsearchivecreator
view util/index/ExternIndex.py @ 48:284c573f36a3 draft
planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit 97a743ee6d228c8a0a5778ec3cb6f68a2e22c8e3-dirty
| author | yating-l | 
|---|---|
| date | Tue, 19 Jun 2018 17:53:58 -0400 | 
| parents | 31a41ce128cc | 
| 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"""
