Beispiel #1
0
 def __init__(self, name='TreeNode', datashape=None, color='#c64e70',
              shape='oval', width=8, height=12, dataDescr='TreeNode Instance',
              klass=TreeNode):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape, 
                           dataDescr=dataDescr)
Beispiel #2
0
 def __init__(self, name='TreeNode', datashape=None, color='#c64e70',
              shape='oval', width=8, height=12, dataDescr='TreeNode Instance',
              klass=TreeNode):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape, 
                           dataDescr=dataDescr)
Beispiel #3
0
 def __init__(self, name='CrystToReal', datashape=None, color='#fe9200',
              shape='oval', width=None, height=None, 
              dataDescr='Crystal to Real conversion object',
              klass=Crystal):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape, 
                           dataDescr=dataDescr)
Beispiel #4
0
 def __init__(self, name='CrystToReal', datashape=None, color='#fe9200',
              shape='oval', width=None, height=None, 
              dataDescr='Crystal to Real conversion object',
              klass=Crystal):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape, 
                           dataDescr=dataDescr)
Beispiel #5
0
        def __init__(self, name='MSMSobject', datashape=None, color='#6060c3',
                     shape='pentagon', width=None, height=None, 
                     dataDescr='MSMS Instance',
                     klass=MSMS):

            AnyArrayType.__init__(self, name=name, color=color, 
                                  shape=shape, width=width, height=height, 
                                  klass=klass, datashape=datashape, 
                                  dataDescr=dataDescr)
Beispiel #6
0
 def __init__(self, name='MSMSobject', datashape=None, color='#6060c3',
              shape='pentagon', width=None, height=None, 
              dataDescr='MSMS Instance',
              klass=MSMS):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape, 
                           dataDescr=dataDescr)
Beispiel #7
0
    def __init__(self,
                 name='autogrid_results',
                 color='#FF33CC',
                 shape='triangle',
                 klass=autogrid_results):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #8
0
    def __init__(self,
                 name='LigandDB',
                 color='#FFCCFF',
                 shape='rect',
                 klass=LigandDB):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #9
0
    def __init__(self,
                 name='image',
                 color='#995699',
                 shape='rect',
                 klass=Image):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #10
0
    def __init__(self,
                 name='receptor',
                 color='#99FF33',
                 shape='triangle',
                 klass=receptor):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #11
0
    def __init__(self,
                 name='receptor_prepared',
                 color='#009900',
                 shape='triangle',
                 klass=receptor_prepared):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #12
0
    def __init__(self,
                 name='dpf_template',
                 color='#9933FF',
                 shape='triangle',
                 klass=dpf_template):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #13
0
    def __init__(self,
                 name='gpf_template',
                 color='#FF3333',
                 shape='triangle',
                 klass=gpf_template):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              klass=klass)
Beispiel #14
0
    def __init__(self,
                 name='geom',
                 datashape=None,
                 color='red',
                 shape='rect',
                 width=None,
                 height=None,
                 klass=Geom):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              width=width,
                              height=height,
                              klass=klass,
                              datashape=datashape)
Beispiel #15
0
    def __init__(self,
                 name='viewer',
                 datashape=None,
                 color='yellow',
                 shape='rect',
                 width=None,
                 height=None,
                 klass=Viewer):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              width=width,
                              height=height,
                              klass=klass,
                              datashape=datashape)
Beispiel #16
0
    def __init__(self,
                 name='texture',
                 datashape=None,
                 color='#995699',
                 shape='rect',
                 width=None,
                 height=None,
                 klass=None):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              width=width,
                              height=height,
                              klass=klass,
                              datashape=datashape)
Beispiel #17
0
    def __init__(self,
                 name='ColorMapType',
                 datashape=None,
                 color='magenta',
                 shape='rect',
                 width=None,
                 height=None,
                 klass=ColorMap):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              width=width,
                              height=height,
                              klass=klass,
                              datashape=datashape)
Beispiel #18
0
    def __init__(self,
                 name='geomOrInsert2d',
                 datashape=None,
                 color='red',
                 shape='rect',
                 width=None,
                 height=None,
                 klass=Common2d3dObject):

        AnyArrayType.__init__(self,
                              name=name,
                              color=color,
                              shape=shape,
                              width=width,
                              height=height,
                              klass=klass,
                              datashape=datashape)
 def __init__(self, name='viewer', datashape=None, color='yellow',
              shape='rect', width=None, height=None, klass=Viewer):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape)
Beispiel #20
0
    def __init__(self, name='receptor_prepared', color='#009900', shape='triangle',
                 klass=receptor_prepared):

        AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                              klass=klass)
    def __init__(self, name='texture', datashape=None, color='#995699',
                 shape='rect', width=None, height=None, klass=None):

        AnyArrayType.__init__(self, name=name, color=color, 
                              shape=shape, width=width, height=height, 
                              klass=klass, datashape=datashape)
 def __init__(self, name='ColorMapType', datashape=None, color='magenta',
              shape='rect', width=None, height=None, klass=ColorMap):
     
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape)
 def __init__(self, name='geom', datashape=None, color='red',
              shape='rect', width=None, height=None, klass=Geom):
   
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape)
 def __init__(self, name='geomOrInsert2d', datashape=None, color='red',
              shape='rect', width=None, height=None, klass=Common2d3dObject):
   
     AnyArrayType.__init__(self, name=name, color=color, 
                           shape=shape, width=width, height=height, 
                           klass=klass, datashape=datashape)
Beispiel #25
0
    def __init__(self, name='receptor', color='#99FF33', shape='triangle',
                 klass=receptor):

        AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                              klass=klass)
Beispiel #26
0
    def __init__(self, name='LigandDB', color='#FFCCFF', shape='rect',
                 klass=LigandDB):

        AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                              klass=klass)
Beispiel #27
0
 def __init__(self, name='PmvCmd', color='#7A7AFF', shape='rect',
              klass=Command):
   
     AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                           klass=klass)
Beispiel #28
0
    def __init__(self, name='dpf_template', color='#9933FF', shape='triangle',
                 klass=dpf_template):

        AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                              klass=klass)
Beispiel #29
0
 def __init__(self, name='PmvInstance', color='#7A7AFF', shape='circle',
              klass=MoleculeViewer):
   
     AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                           klass=klass)
Beispiel #30
0
 def __init__(self, name='MPLDrawArea', color='#99AFD8', shape='diamond',
              klass=dict):
   
     AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                           klass=klass)
Beispiel #31
0
 def __init__(self, name='MPLAxes', color='#99AFD8', shape='oval',
              klass=Axes):
   
     AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                           klass=klass)
Beispiel #32
0
    def __init__(self, name='autogrid_results', color='#FF33CC', shape='triangle',
                 klass=autogrid_results):

        AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                              klass=klass)
Beispiel #33
0
    def __init__(self, name='gpf_template', color='#FF3333', shape='triangle',
                 klass=gpf_template):

        AnyArrayType.__init__(self, name=name, color=color, shape=shape, 
                              klass=klass)