line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::ClinicalTrialsdotGov::SearchResult; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
2312
|
use strict; |
|
1
|
|
|
|
|
38
|
|
|
1
|
|
|
|
|
201
|
|
4
|
1
|
|
|
1
|
|
11
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
68
|
|
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
9
|
use Carp qw( cluck ); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
127
|
|
7
|
1
|
|
|
1
|
|
10
|
use base qw( Class::Accessor ); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
2165
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
WebService::ClinicalTrialsdotGov::SearchResult->mk_accessors(qw( |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
last_changed |
12
|
|
|
|
|
|
|
condition_summary |
13
|
|
|
|
|
|
|
nct_id |
14
|
|
|
|
|
|
|
status |
15
|
|
|
|
|
|
|
order |
16
|
|
|
|
|
|
|
url |
17
|
|
|
|
|
|
|
title |
18
|
|
|
|
|
|
|
score |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
)); |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
WebService::ClinicalTrialsdotGov::SearchResult - Wrapper around the clinicaltrials.gov API |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 ACCESSORS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
last_changed |
29
|
|
|
|
|
|
|
condition_summary |
30
|
|
|
|
|
|
|
nct_id |
31
|
|
|
|
|
|
|
status |
32
|
|
|
|
|
|
|
order |
33
|
|
|
|
|
|
|
url |
34
|
|
|
|
|
|
|
title |
35
|
|
|
|
|
|
|
score |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Spiros Denaxas, C<< >> |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 BUGS |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
44
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
45
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 SUPPORT |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
perldoc WebService::ClinicalTrialsdotGov |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
You can also look for information at: |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=over 4 |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
L |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
L |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=item * CPAN Ratings |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
L |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=item * Search CPAN |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
L |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=back |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Copyright 2010 Spiros Denaxas, all rights reserved. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
81
|
|
|
|
|
|
|
under the same terms as Perl itself. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=cut |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
1; |