comparison lib/CPT/Parameter/Empty.pm @ 1:8691c1c61a8e draft default tip

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