Mercurial > repos > yating-l > jbrowsearchivecreator
diff util/index/ExternIndex.py @ 25:31a41ce128cc draft
planemo upload for repository https://github.com/Yating-L/jbrowse-archive-creator.git commit 691e5366893905d30943a3cb8cdfb6341f0f5362-dirty
author | yating-l |
---|---|
date | Fri, 13 Oct 2017 12:44:31 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/util/index/ExternIndex.py Fri Oct 13 12:44:31 2017 -0400 @@ -0,0 +1,16 @@ +#!/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""" + \ No newline at end of file