Example #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 None
Example #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 None
Example #3
0
File: types.py Project: dujm/hail
 def _select(self, *identifiers):
     return TStruct._from_java(
         self._jtype.filter(jset(list(identifiers)), True)._1())
Example #4
0
File: types.py Project: dujm/hail
 def _drop(self, *identifiers):
     return TStruct._from_java(
         self._jtype.filter(jset(list(identifiers)), False)._1())