fixed recursive_children cvterm function, and added tests for parents and children
[cxgn-corelibs.git] / lib / CXGN / CDBI / SGN / QCReport.pm
blobea53f987be1d6a09e9ed69de8cb598e3e0ea0578
1 package CXGN::CDBI::SGN::QCReport;
4 =head1 DATA FIELDS
6 Primary Keys:
7 qc_id
9 Columns:
10 qc_id
11 est_id
12 basecaller
13 qc_status
14 vs_status
15 qstart
16 qend
17 istart
18 iend
19 hqi_start
20 hqi_length
21 entropy
22 expected_error
23 quality_trim_threshold
24 vector_tokens
26 Sequence:
27 (sgn base schema).qc_report_qc_id_seq
29 =cut
31 use base 'CXGN::CDBI::Class::DBI';
32 __PACKAGE__->table(__PACKAGE__->qualify_schema('sgn') . '.qc_report');
34 our @primary_key_names =
35 qw/
36 qc_id
39 our @column_names =
40 qw/
41 qc_id
42 est_id
43 basecaller
44 qc_status
45 vs_status
46 qstart
47 qend
48 istart
49 iend
50 hqi_start
51 hqi_length
52 entropy
53 expected_error
54 quality_trim_threshold
55 vector_tokens
58 __PACKAGE__->columns( Primary => @primary_key_names, );
59 __PACKAGE__->columns( All => @column_names, );
60 __PACKAGE__->sequence( __PACKAGE__->base_schema('sgn').'.qc_report_qc_id_seq' );
63 __PACKAGE__->has_a(est_id => 'CXGN::CDBI::SGN::EST');
65 sub est_object {
66 shift->est_id(@_);
69 ###
70 1;#do not remove
71 ###