view util/index/ExternIndex.py @ 12:9161beae834f draft

planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit 08f15daf5442def561713fb9c673bb06c9a3a05f
author yating-l
date Sat, 02 Jun 2018 13:08:46 -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"""