Mercurial > repos > yating-l > hubarchivecreator
annotate util/index/ExternIndex.py @ 85:a65e52152476 draft default tip
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 1a81ebd0ddea950b84af3fc830e9267a4814b29f
| author | yating-l | 
|---|---|
| date | Mon, 06 Nov 2017 13:13:01 -0500 | 
| parents | 0bc486356e2a | 
| children | 
| rev | line source | 
|---|---|
| 66 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 1 #!/usr/bin/python | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 2 import collections | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 3 import abc | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 4 from abc import ABCMeta | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 5 | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 6 class ExternIndex(object): | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 7 __metaclass__ = ABCMeta | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 8 | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 9 @abc.abstractmethod | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 10 def __init__(self): | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 11 """init""" | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 12 | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 13 @abc.abstractmethod | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 14 def setExtLink(self): | 
| 
4ca7cbf2d9b8
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 159730602ff500b59aefc7080fb49b726c88d655-dirty
 yating-l parents: diff
changeset | 15 """set external link""" | 
| 83 
0bc486356e2a
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit ac73da32d59853ca563e7939d05016a6f3a6899e-dirty
 yating-l parents: 
66diff
changeset | 16 | 
