view util/index/ExternIndex.py @ 20:85971ec2a527 draft default tip

planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit 81d946d4544a4ea7e5b55f90caef971eca6abba0
author sargentl
date Fri, 21 Sep 2018 16:30:54 -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"""