comparison cpt_psm_recombine/lib/CPT/Parameter/Label.pm @ 0:b18e8268bf4e draft

Uploaded
author cpt
date Tue, 05 Jul 2022 05:05:13 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b18e8268bf4e
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