line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
6
|
|
|
6
|
|
4156
|
use utf8; |
|
6
|
|
|
|
|
23
|
|
|
6
|
|
|
|
|
40
|
|
2
|
|
|
|
|
|
|
package App::Sandy::DB::Schema::Result::QualityProfile; |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader |
5
|
|
|
|
|
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
|
8
|
6
|
|
|
6
|
|
266
|
use strict; |
|
6
|
|
|
|
|
18
|
|
|
6
|
|
|
|
|
127
|
|
9
|
6
|
|
|
6
|
|
35
|
use warnings; |
|
6
|
|
|
|
|
16
|
|
|
6
|
|
|
|
|
161
|
|
10
|
|
|
|
|
|
|
|
11
|
6
|
|
|
6
|
|
39
|
use base 'DBIx::Class::Core'; |
|
6
|
|
|
|
|
16
|
|
|
6
|
|
|
|
|
1673
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("quality_profile"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"id", |
19
|
|
|
|
|
|
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"name", |
21
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
22
|
|
|
|
|
|
|
"source", |
23
|
|
|
|
|
|
|
{ data_type => "text", default_value => "not defined", is_nullable => 1 }, |
24
|
|
|
|
|
|
|
"is_user_provided", |
25
|
|
|
|
|
|
|
{ data_type => "integer", default_value => 1, is_nullable => 1 }, |
26
|
|
|
|
|
|
|
"is_single_molecule", |
27
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 0 }, |
28
|
|
|
|
|
|
|
"mean", |
29
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 0 }, |
30
|
|
|
|
|
|
|
"stdd", |
31
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 0 }, |
32
|
|
|
|
|
|
|
"error", |
33
|
|
|
|
|
|
|
{ data_type => "real", is_nullable => 0 }, |
34
|
|
|
|
|
|
|
"deepth", |
35
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 0 }, |
36
|
|
|
|
|
|
|
"partil", |
37
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 0 }, |
38
|
|
|
|
|
|
|
"matrix", |
39
|
|
|
|
|
|
|
{ data_type => "blob", is_nullable => 0 }, |
40
|
|
|
|
|
|
|
"date", |
41
|
|
|
|
|
|
|
{ data_type => "date", default_value => \"CURRENT_DATE", is_nullable => 1 }, |
42
|
|
|
|
|
|
|
); |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("id"); |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
__PACKAGE__->add_unique_constraint("name_unique", ["name"]); |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2018-07-31 20:22:50 |
52
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5r74uIOy2yUdN9U2wz3kmg |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
56
|
|
|
|
|
|
|
1; |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
__END__ |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=pod |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=encoding UTF-8 |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head1 NAME |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
App::Sandy::DB::Schema::Result::QualityProfile |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 VERSION |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
version 0.24 |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 NAME |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
App::Sandy::DB::Schema::Result::QualityProfile |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head1 TABLE: C<quality_profile> |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 ACCESSORS |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head2 id |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
data_type: 'integer' |
83
|
|
|
|
|
|
|
is_auto_increment: 1 |
84
|
|
|
|
|
|
|
is_nullable: 0 |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head2 name |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
data_type: 'text' |
89
|
|
|
|
|
|
|
is_nullable: 0 |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head2 source |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
data_type: 'text' |
94
|
|
|
|
|
|
|
default_value: 'not defined' |
95
|
|
|
|
|
|
|
is_nullable: 1 |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head2 is_user_provided |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
data_type: 'integer' |
100
|
|
|
|
|
|
|
default_value: 1 |
101
|
|
|
|
|
|
|
is_nullable: 1 |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head2 is_single_molecule |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
data_type: 'integer' |
106
|
|
|
|
|
|
|
is_nullable: 0 |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=head2 mean |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
data_type: 'integer' |
111
|
|
|
|
|
|
|
is_nullable: 0 |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=head2 stdd |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
data_type: 'integer' |
116
|
|
|
|
|
|
|
is_nullable: 0 |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
=head2 error |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
data_type: 'real' |
121
|
|
|
|
|
|
|
is_nullable: 0 |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
=head2 deepth |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
data_type: 'integer' |
126
|
|
|
|
|
|
|
is_nullable: 0 |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
=head2 partil |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
data_type: 'integer' |
131
|
|
|
|
|
|
|
is_nullable: 0 |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
=head2 matrix |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
data_type: 'blob' |
136
|
|
|
|
|
|
|
is_nullable: 0 |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=head2 date |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
data_type: 'date' |
141
|
|
|
|
|
|
|
default_value: CURRENT_DATE |
142
|
|
|
|
|
|
|
is_nullable: 1 |
143
|
|
|
|
|
|
|
|
144
|
|
|
|
|
|
|
=head1 PRIMARY KEY |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
=over 4 |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
=item * L</id> |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
=back |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
=head1 UNIQUE CONSTRAINTS |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
=head2 C<name_unique> |
155
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
=over 4 |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
=item * L</name> |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
=back |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
=head1 AUTHORS |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
=over 4 |
165
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
=item * |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
Thiago L. A. Miller <tmiller@mochsl.org.br> |
169
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
=item * |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
J. Leonel Buzzo <lbuzzo@mochsl.org.br> |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
=item * |
175
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
Felipe R. C. dos Santos <fsantos@mochsl.org.br> |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
=item * |
179
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
Helena B. Conceição <hconceicao@mochsl.org.br> |
181
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
=item * |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
Rodrigo Barreiro <rbarreiro@mochsl.org.br> |
185
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
=item * |
187
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
Gabriela Guardia <gguardia@mochsl.org.br> |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
=item * |
191
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
Fernanda Orpinelli <forpinelli@mochsl.org.br> |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
=item * |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
Rafael Mercuri <rmercuri@mochsl.org.br> |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
=item * |
199
|
|
|
|
|
|
|
|
200
|
|
|
|
|
|
|
Rodrigo Barreiro <rbarreiro@mochsl.org.br> |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
=item * |
203
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
Pedro A. F. Galante <pgalante@mochsl.org.br> |
205
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
=back |
207
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
This software is Copyright (c) 2023 by Teaching and Research Institute from Sírio-Libanês Hospital. |
211
|
|
|
|
|
|
|
|
212
|
|
|
|
|
|
|
This is free software, licensed under: |
213
|
|
|
|
|
|
|
|
214
|
|
|
|
|
|
|
The GNU General Public License, Version 3, June 2007 |
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
=cut |