|
|
|
|
|
set_name(self,
new_name)
Setting the list's name causes the list's name to be updated on the
server. |
source code
|
|
|
|
|
|
|
|
|
|
intermine.query.Query
|
to_query(self)
Return a new query constrained to the objects in this list, and with
a single view column of the objects ids. |
source code
|
|
intermine.query.Query
|
to_attribute_query(self)
Return a query constrained to contain the objects in this list, with
all the attributes of these objects selected for output as view
columns |
source code
|
|
|
__and__(self,
other)
Intersect this list and another |
source code
|
|
|
__iand__(self,
other)
Intersect this list and another, and replace this list with the
result of the intersection |
source code
|
|
|
__or__(self,
other)
Return the union of this list and another |
source code
|
|
|
__add__(self,
other)
Return the union of this list and another |
source code
|
|
|
__iadd__(self,
other)
Append other to this list. |
source code
|
|
|
|
|
append(self,
appendix)
Append the arguments to this list |
source code
|
|
|
__xor__(self,
other)
Calculate the symmetric difference of this list and another |
source code
|
|
|
__ixor__(self,
other)
Calculate the symmetric difference of this list and another and
replace this list with the result |
source code
|
|
|
__sub__(self,
other)
Subtract the other from this list |
source code
|
|
|
__isub__(self,
other)
Replace this list with the subtraction of the other from this list |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|