Ejemplo n.º 1
0
 def _convert_to_j(self, annotation):
     if annotation is not None:
         return jset(
             [self.element_type._convert_to_j(elt) for elt in annotation]
         )
     else:
         return annotation
Ejemplo n.º 2
0
 def _convert_to_j(self, annotation):
     if annotation is not None:
         return jset(
             [self.element_type._convert_to_j(elt) for elt in annotation]
         )
     else:
         return annotation
Ejemplo n.º 3
0
Archivo: typ.py Proyecto: wtsi-hgi/hail
 def _select(self, *identifiers):
     return TStruct._from_java(self._jtype.filter(jset(list(identifiers)), True)._1())
Ejemplo n.º 4
0
Archivo: typ.py Proyecto: wtsi-hgi/hail
 def _drop(self, *identifiers):
     return TStruct._from_java(self._jtype.filter(jset(list(identifiers)), False)._1())