view util/index/ExternIndex.py @ 9:7cb67cbbd8e5 draft

planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit 753ca09582fe0148e538103f2c211f7caa182966
author yating-l
date Tue, 01 May 2018 23:01:06 -0400
parents 237707a6b74d
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"""