예제 #1
0
파일: expr.py 프로젝트: narendrameena/hail
 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
예제 #2
0
파일: expr.py 프로젝트: jbloom22/hail
 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
예제 #3
0
파일: typ.py 프로젝트: wtsi-hgi/hail
 def _select(self, *identifiers):
     return TStruct._from_java(self._jtype.filter(jset(list(identifiers)), True)._1())
예제 #4
0
파일: typ.py 프로젝트: wtsi-hgi/hail
 def _drop(self, *identifiers):
     return TStruct._from_java(self._jtype.filter(jset(list(identifiers)), False)._1())