Mercurial > repos > yating-l > jbrowsearchivecreator
view util/index/ExternIndex.py @ 45:d56955fc4c75 draft
planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit 2285eddcfe689d70d89571a045f204b74cc6890c-dirty
| author | yating-l | 
|---|---|
| date | Tue, 01 May 2018 21:52:46 -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"""
