Mercurial > repos > yating-l > jbrowsearchivecreator
view util/index/ExternIndex.py @ 43:0d5c5fef540e draft
planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit 2285eddcfe689d70d89571a045f204b74cc6890c-dirty
| author | yating-l |
|---|---|
| date | Sun, 29 Apr 2018 22:14:31 -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"""
