[sqlalchemy] Re: objects created using sqlalchemy

2008-12-06 Thread Faheem Mitha
On Fri, 5 Dec 2008, Faheem Mitha wrote: Hi, I'm using sqla with the following schema (see below). I'm creating a cell object implicitly, using the function make_cell and the association proxy pattern. def make_cell(patient_obj, snp_obj, snpval): patient_obj.snps[snp_obj] = snpval

[sqlalchemy] Re: objects created using sqlalchemy

2008-12-05 Thread Michael Bayer
On Dec 5, 2008, at 3:01 PM, Faheem Mitha wrote: Hi, I'm using sqla with the following schema (see below). I'm creating a cell object implicitly, using the function make_cell and the association proxy pattern. def make_cell(patient_obj, snp_obj, snpval):