Mercurial > repos > cpt > cpt_psm_comparison_table
comparison lib/CPT/Parameter/Label.pm @ 1:f093e08f21f3 draft default tip
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author | cpt |
---|---|
date | Mon, 05 Jun 2023 02:47:24 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:b8b8b52904a5 | 1:f093e08f21f3 |
---|---|
1 package CPT::Parameter::Label; | |
2 use Moose; | |
3 with 'CPT::Parameter'; | |
4 | |
5 has 'label' => (is => 'rw', isa => 'Str'); | |
6 has 'name' => (is => 'rw', isa => 'Any'); | |
7 | |
8 sub getOptionsArray{ | |
9 my ($self) = @_; | |
10 return [$self->label()]; | |
11 } | |
12 sub validate_individual{ | |
13 return 1; | |
14 } | |
15 | |
16 sub galaxy_input{ | |
17 return; | |
18 } | |
19 sub galaxy_output{ | |
20 return; | |
21 } | |
22 sub galaxy_command{ | |
23 return; | |
24 } | |
25 sub getopt_format{ | |
26 return ''; | |
27 } | |
28 | |
29 no Moose; | |
30 1; | |
31 | |
32 __END__ | |
33 | |
34 =pod | |
35 | |
36 =encoding UTF-8 | |
37 | |
38 =head1 NAME | |
39 | |
40 CPT::Parameter::Label | |
41 | |
42 =head1 VERSION | |
43 | |
44 version 1.99.4 | |
45 | |
46 =head1 AUTHOR | |
47 | |
48 Eric Rasche <rasche.eric@yandex.ru> | |
49 | |
50 =head1 COPYRIGHT AND LICENSE | |
51 | |
52 This software is Copyright (c) 2014 by Eric Rasche. | |
53 | |
54 This is free software, licensed under: | |
55 | |
56 The GNU General Public License, Version 3, June 2007 | |
57 | |
58 =cut |