forked from Dfam-consortium/RepeatMasker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PubRef.pm
executable file
·451 lines (300 loc) · 9.06 KB
/
PubRef.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
#!/usr/bin/perl
##---------------------------------------------------------------------------##
## File:
## @(#) PubRef.pm
## Author:
## Robert M. Hubley [email protected]
## Description:
##
#******************************************************************************
#* Copyright (C) Institute for Systems Biology 2003-2004 Developed by
#* Arian Smit and Robert Hubley.
#*
#* This work is licensed under the Open Source License v2.1. To view a copy
#* of this license, visit http://www.opensource.org/licenses/osl-2.1.php or
#* see the license.txt file contained in this distribution.
#*
#******************************************************************************
# Implementation Details:
#
###############################################################################
# ChangeLog
#
# $Log$
#
###############################################################################
#
# To Do:
#
#
=head1 NAME
PubRef
=head1 SYNOPSIS
use PubRef;
Usage:
myPubRef = PubRef->new();
=head1 DESCRIPTION
=head1 SEE ALSO
=over 4
=back
=head1 COPYRIGHT
Copyright 2004 Institute for Systems Biology
=head1 AUTHOR
Robert Hubley <[email protected]>
=head1 INSTANCE METHODS
=cut
package PubRef;
use strict;
##-------------------------------------------------------------------------##
## Constructor:
##-------------------------------------------------------------------------##
sub new {
my ( $self ) = @_;
# instance-variables:
my $number;
my $comment;
my $xref;
my $authors;
my $title;
my $location;
my $position;
$self = bless {
_number => $number,
_comment => $comment,
_xref => $xref,
_authors => $authors,
_title => $title,
_location => $location,
_position => $position,
},
ref( $self ) || $self;
#$self->inherit_from($self->your_base::new()); # adapt when inheriting
return $self;
}
##-------------------------------------------------------------------------##
## Class Methods
##-------------------------------------------------------------------------##
sub specific {
my ( $self ) = @_;
}
sub inherit_from {
my ( $self, $base_blessed ) = @_;
my @l = keys %$base_blessed;
foreach ( @l ) {
$self->{$_} = $base_blessed->{$_};
}
}
##-------------------------------------------------------------------------##
## Get and Set Methods
##-------------------------------------------------------------------------##
##-------------------------------------------------------------------------##
=head2 getNumber()
Use: my $value = getNumber();
Get the value of Number.
=cut
##-------------------------------------------------------------------------##
sub getNumber {
my ( $self ) = @_;
$self->{_number};
}
##-------------------------------------------------------------------------##
=head2 getComment()
Use: my $value = getComment();
Get the value of Comment.
=cut
##-------------------------------------------------------------------------##
sub getComment {
my ( $self ) = @_;
$self->{_comment};
}
##-------------------------------------------------------------------------##
=head2 getXref()
Use: my $value = getXref();
Get the value of Xref.
=cut
##-------------------------------------------------------------------------##
sub getXref {
my ( $self ) = @_;
$self->{_xref};
}
##-------------------------------------------------------------------------##
=head2 getAuthors()
Use: my $value = getAuthors();
Get the value of Authors.
=cut
##-------------------------------------------------------------------------##
sub getAuthors {
my ( $self ) = @_;
$self->{_authors};
}
##-------------------------------------------------------------------------##
=head2 getTitle()
Use: my $value = getTitle();
Get the value of Title.
=cut
##-------------------------------------------------------------------------##
sub getTitle {
my ( $self ) = @_;
$self->{_title};
}
##-------------------------------------------------------------------------##
=head2 getLocation()
Use: my $value = getLocation();
Get the value of Location.
=cut
##-------------------------------------------------------------------------##
sub getLocation {
my ( $self ) = @_;
$self->{_location};
}
##-------------------------------------------------------------------------##
=head2 getPosition()
Use: my $value = getPosition();
Get the value of Position.
=cut
##-------------------------------------------------------------------------##
sub getPosition {
my ( $self ) = @_;
$self->{_position};
}
##-------------------------------------------------------------------------##
=head2 clearNumber()
Use: clearNumber();
Clear the contents of Number.
=cut
##-------------------------------------------------------------------------##
sub clearNumber {
my ( $self ) = @_;
my $v = $self->setNumber( undef );
}
##-------------------------------------------------------------------------##
=head2 clearComment()
Use: clearComment();
Clear the contents of Comment.
=cut
##-------------------------------------------------------------------------##
sub clearComment {
my ( $self ) = @_;
my $v = $self->setComment( undef );
}
##-------------------------------------------------------------------------##
=head2 clearXref()
Use: clearXref();
Clear the contents of Xref.
=cut
##-------------------------------------------------------------------------##
sub clearXref {
my ( $self ) = @_;
my $v = $self->setXref( undef );
}
##-------------------------------------------------------------------------##
=head2 clearAuthors()
Use: clearAuthors();
Clear the contents of Authors.
=cut
##-------------------------------------------------------------------------##
sub clearAuthors {
my ( $self ) = @_;
my $v = $self->setAuthors( undef );
}
##-------------------------------------------------------------------------##
=head2 clearTitle()
Use: clearTitle();
Clear the contents of Title.
=cut
##-------------------------------------------------------------------------##
sub clearTitle {
my ( $self ) = @_;
my $v = $self->setTitle( undef );
}
##-------------------------------------------------------------------------##
=head2 clearLocation()
Use: clearLocation();
Clear the contents of Location.
=cut
##-------------------------------------------------------------------------##
sub clearLocation {
my ( $self ) = @_;
my $v = $self->setLocation( undef );
}
##-------------------------------------------------------------------------##
=head2 clearPosition()
Use: clearPosition();
Clear the contents of Position.
=cut
##-------------------------------------------------------------------------##
sub clearPosition {
my ( $self ) = @_;
my $v = $self->setPosition( undef );
}
##-------------------------------------------------------------------------##
=head2 setNumber()
Use: my $value = setNumber( $value );
Set the value of Number.
=cut
##-------------------------------------------------------------------------##
sub setNumber {
my ( $self, $value ) = @_;
$self->{_number} = $value;
}
##-------------------------------------------------------------------------##
=head2 setComment()
Use: my $value = setComment( $value );
Set the value of Comment.
=cut
##-------------------------------------------------------------------------##
sub setComment {
my ( $self, $value ) = @_;
$self->{_comment} = $value;
}
##-------------------------------------------------------------------------##
=head2 setXref()
Use: my $value = setXref( $value );
Set the value of Xref.
=cut
##-------------------------------------------------------------------------##
sub setXref {
my ( $self, $value ) = @_;
$self->{_xref} = $value;
}
##-------------------------------------------------------------------------##
=head2 setAuthors()
Use: my $value = setAuthors( $value );
Set the value of Authors.
=cut
##-------------------------------------------------------------------------##
sub setAuthors {
my ( $self, $value ) = @_;
$self->{_authors} = $value;
}
##-------------------------------------------------------------------------##
=head2 setTitle()
Use: my $value = setTitle( $value );
Set the value of Title.
=cut
##-------------------------------------------------------------------------##
sub setTitle {
my ( $self, $value ) = @_;
$self->{_title} = $value;
}
##-------------------------------------------------------------------------##
=head2 setLocation()
Use: my $value = setLocation( $value );
Set the value of Location.
=cut
##-------------------------------------------------------------------------##
sub setLocation {
my ( $self, $value ) = @_;
$self->{_location} = $value;
}
##-------------------------------------------------------------------------##
=head2 setPosition()
Use: my $value = setPosition( $value );
Set the value of Position.
=cut
##-------------------------------------------------------------------------##
sub setPosition {
my ( $self, $value ) = @_;
$self->{_position} = $value;
}
1;