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