Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.stsci.edu/spst/UnixTransition/doc/alignment_util.html
Дата изменения: Fri Apr 8 12:46:14 2016
Дата индексирования: Mon Apr 11 03:23:54 2016
Кодировка:

Поисковые слова: m 81
Python: module alignment_util
 
 
alignment_util (version 2/7/06)
index
alignment_util.py

PURPOSE --
A module for dealing with alignments
 
DEVELOPER --
Don Chance
 
MODIFICATION HISTORY --
- Initial implementaion 2/18/04
- beefed up constructor and added set_target_type method. dc 2/7/06

 
Modules
       
obset_util
spss_sys_util
stpydb

 
Classes
       
__builtin__.dict(__builtin__.object)
alignment

 
class alignment(__builtin__.dict)
    A class for alignments.
 
 
Method resolution order:
alignment
__builtin__.dict
__builtin__.object

Methods defined here:
__eq__(self, other)
Compare two alignments.
__init__(self, data={})
The alignment object constructor.
 
The input parameter 'data' must be dictionary with, at least, 'proposal_id'
'obset_id', 'alignment_id' defined or a string of the form 'ppppp:oo:aa[:vv]'.
__repr__(self)
get(self, field, failobj=None)
Returns the value of 'field'.
 
The value of 'field' will be retrieved from the PMDB if necessary.
If the field is 'proposal', the proposal object associated with this
alignment is returned.
If 'field' is not already in the internal dictionary and is not
found in a relation in the db, None will be returned.
get_qalignment_data(self)
Populate this alignment object with the data from the
qalignment relation.
get_qaposition_data(self)
Populate this alignment object with the data from the
qaposition relation.
has_key(self, field)
Check the object for the existence of 'field' in its internal dictionary.
 
Returns TRUE if it is there, FALSE otherwise.
set_field(self, relation, field, value)
Update the database setting the given field
in the given relation to particular value.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from __builtin__.dict:
__cmp__(...)
x.__cmp__(y) <==> cmp(x,y)
__contains__(...)
D.__contains__(k) -> True if D has a key k, else False
__delitem__(...)
x.__delitem__(y) <==> del x[y]
__ge__(...)
x.__ge__(y) <==> x>=y
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__gt__(...)
x.__gt__(y) <==> x>y
__iter__(...)
x.__iter__() <==> iter(x)
__le__(...)
x.__le__(y) <==> x<=y
__len__(...)
x.__len__() <==> len(x)
__lt__(...)
x.__lt__(y) <==> x<y
__ne__(...)
x.__ne__(y) <==> x!=y
__setitem__(...)
x.__setitem__(i, y) <==> x[i]=y
__sizeof__(...)
D.__sizeof__() -> size of D in memory, in bytes
clear(...)
D.clear() -> None.  Remove all items from D.
copy(...)
D.copy() -> a shallow copy of D
fromkeys(...)
dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.
v defaults to None.
items(...)
D.items() -> list of D's (key, value) pairs, as 2-tuples
iteritems(...)
D.iteritems() -> an iterator over the (key, value) items of D
iterkeys(...)
D.iterkeys() -> an iterator over the keys of D
itervalues(...)
D.itervalues() -> an iterator over the values of D
keys(...)
D.keys() -> list of D's keys
pop(...)
D.pop(k[,d]) -> v, remove specified key and return the corresponding value.
If key is not found, d is returned if given, otherwise KeyError is raised
popitem(...)
D.popitem() -> (k, v), remove and return some (key, value) pair as a
2-tuple; but raise KeyError if D is empty.
setdefault(...)
D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D
update(...)
D.update([E, ]**F) -> None.  Update D from dict/iterable E and F.
If E present and has a .keys() method, does:     for k in E: D[k] = E[k]
If E present and lacks .keys() method, does:     for (k, v) in E: D[k] = v
In either case, this is followed by: for k in F: D[k] = F[k]
values(...)
D.values() -> list of D's values
viewitems(...)
D.viewitems() -> a set-like object providing a view on D's items
viewkeys(...)
D.viewkeys() -> a set-like object providing a view on D's keys
viewvalues(...)
D.viewvalues() -> an object providing a view on D's values

Data and other attributes inherited from __builtin__.dict:
__hash__ = None
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
Data
        FALSE = 0
False = 0
SPSS_DB = 'spss'
TRUE = 1
True = 1
__version__ = '2/7/06'
false = 0
true = 1