Mercurial > repos > fgiacomoni > lipidmaps_textsearch
view lib/operations.pm @ 1:adf9ae010b1c draft
planemo upload for repository https://github.com/workflow4metabolomics/tool-bank-lipidmaps.git commit 7028ace57a9bbcefccb40cf4c841ef8a92646e06
author | fgiacomoni |
---|---|
date | Tue, 11 Apr 2017 04:09:58 -0400 |
parents | e8bd49794291 |
children |
line wrap: on
line source
package lib::operations ; use strict; use warnings ; use Exporter ; use Carp ; use Data::Dumper ; use vars qw($VERSION @ISA @EXPORT %EXPORT_TAGS); our $VERSION = "1.0"; our @ISA = qw(Exporter); our @EXPORT = qw( get_factorial truncate_num truncate_nums round_num round_nums manage_mode ); our %EXPORT_TAGS = ( ALL => [qw( get_factorial truncate_num truncate_nums round_num round_nums manage_mode )] ); =head1 NAME My::operations - An example module =head1 SYNOPSIS use My::operations; my $object = My::Module->new(); print $object->as_string; =head1 DESCRIPTION This module clusters several more used maths functions like factorial... =head1 METHODS Methods are : =head2 METHOD new ## Description : new ## Input : $self ## Ouput : bless $self ; ## Usage : new() ; =cut sub new { ## Variables my $self={}; bless($self) ; return $self ; } ### END of SUB =head2 METHOD get_factorial ## Description :permet de retourner la factorielle d'un nombre ## Input : $indice ## Output : $factorial ## Usage : my ( var2 ) = get_factorial( var1 ) ; =cut ## START of SUB sub get_factorial { ## Retrieve Values my $self = shift ; my ( $ind )= @_ ; # transmission des parametres my ( $factorial, $indmun ) = ( 0, 0 ) ; if ( defined $ind ) { if ( $ind == 0 ) { $factorial = 1 ; } else { $indmun = $ind-1 ; $factorial = &get_factorial ( $self, $indmun ) * $ind ; } } else { croak "Indice in \"get_factorial sub\" is undef\n" ; } return ($factorial) ; # renvoi de la valeur } ## END of SUB =head2 METHOD manage_mode ## Description : manage mode and apply mass correction (positive/negative/neutral) ## Input : $mode, $charge, $electron, $proton, $mass ## Output : $exact_mass ## Usage : my ( $exact_mass ) = manage_mode( $mode, $charge, $electron, $proton, $mass ) ; =cut ## START of SUB sub manage_mode { ## Retrieve Values my $self = shift ; my ( $mode, $charge, $electron, $proton, $mass ) = @_ ; my ($exact_mass, $tmp_mass) = ( undef, undef ) ; ## some explanations : # MS in + mode = adds H+ (proton) and molecule is positive : el+ => $charge = "positive" # For HR, need to subtrack proton mz and to add electron mz (1 electron per charge) to the input mass which comes neutral! if ( ( defined $$electron ) and ( defined $$proton ) ) { # check mass if ( defined $$mass ) { $tmp_mass = $$mass ; $tmp_mass =~ tr/,/./ ; } # manage . and , in case of... else { warn "No mass is defined\n" } # manage charge if ( ( !defined $$charge ) || ($$charge < 0) ){ warn "Charge is not defined or value is less than zero\n" ; } # set neutral mass in function of ms mode if($$mode eq 'POS') { $exact_mass = ( $tmp_mass - $$proton + $$electron) * $$charge ; } elsif($$mode eq 'NEG') { $exact_mass = ( $tmp_mass + $$proton - $$electron) * $$charge ; } elsif($$mode eq "NEU") { $exact_mass = $tmp_mass ; } else { warn "This mode doesn't exist : please select positive/negative or neutral mode\n" ; } } else { warn "Missing some parameter values (electron, neutron masses), please check your conf file\n" ; } # print "$tmp_mass -> $exact_mass ($$mode) \n" ; return(\$exact_mass) ; } ## END of SUB =head2 METHOD truncate_num ## Description : truncate a number by the sended decimal ## Input : $number, $decimal ## Output : $trunk_num ## Usage : my ( $trunk_num ) = truncate_num( $number, $decimal ) ; =cut ## START of SUB sub truncate_num { ## Retrieve Values my $self = shift ; my ( $number, $decimal ) = @_ ; my $trunk_num = 0 ; if ( ( defined $decimal ) and ( $decimal > 0 ) and ( defined $number ) and ( $number > 0 ) ) { $trunk_num = ($number =~ m/(\d+[\.|,]\d{$decimal})/); ## on utilise une tronquature seche 5.3 -> 5 et 5.8 -> 5 if($number =~/^\-/) {$trunk_num = -$trunk_num ;} # For neg number } else { croak "Can't trunk any number : missing value or decimal\n" ; } return(\$trunk_num) ; } ## END of SUB =head2 METHOD truncate_nums ## Description : truncate a list of numbers by the sended decimal ## Input : $numbers, $decimal ## Output : $trunk_nums ## Usage : my ( $trunk_nums ) = truncate_nums( $numbers, $decimal ) ; =cut ## START of SUB sub truncate_nums { ## Retrieve Values my $self = shift ; my ( $numbers, $decimal ) = @_ ; my @trunk_nums = () ; if ( ( defined $decimal ) and ( $decimal > 0 ) and ( defined $numbers ) and ( scalar(@{$numbers}) > 0 ) ) { foreach my $nb ( @{$numbers} ) { my ( $trunk_num ) = ( $nb =~ m/(\d+[\.|,]\d{$decimal})/ ); ## on utilise une tronquature seche 5.3 -> 5 et 5.8 -> 5 if( $nb =~/^\-/ ) { $trunk_num = -$trunk_num ; } # For neg number push ( @trunk_nums, $trunk_num ) ; } } else { croak "Can't trunk any number : missing values or decimal\n" ; } return( \@trunk_nums ) ; } ## END of SUB =head2 METHOD round_num ## Description : round a number by the sended decimal ## Input : $number, $decimal ## Output : $round_num ## Usage : my ( $round_num ) = round_num( $number, $decimal ) ; =cut ## START of SUB sub round_num { ## Retrieve Values my $self = shift ; my ( $number, $decimal ) = @_ ; my $round_num = 0 ; if ( ( defined $decimal ) and ( $decimal > 0 ) and ( defined $number ) and ( $number > 0 ) ) { $round_num = sprintf("%.".$decimal."f", $number); ## on utilise un arrondit : 5.3 -> 5 et 5.5 -> 6 } else { croak "Can't round any number : missing value or decimal\n" ; } return(\$round_num) ; } ## END of SUB =head2 METHOD round_nums ## Description : round a list of numbers by the sended decimal ## Input : $numbers, $decimal ## Output : $round_nums ## Usage : my ( $round_nums ) = round_nums( $numbers, $decimal ) ; =cut ## START of SUB sub round_nums { ## Retrieve Values my $self = shift ; my ( $numbers, $decimal ) = @_ ; my @round_nums = () ; # print Dumper $numbers ; if ( ( defined $decimal ) and ( $decimal >= 0 ) and ( defined $numbers ) and ( scalar(@{$numbers}) > 0 ) ) { foreach my $nb ( @{$numbers} ) { if ( ( defined $nb ) ) { if ($nb =~ /^\d+\.\d+$/ ) { ## check float my $round_num = sprintf("%.".$decimal."f", $nb); ## on utilise un arrondit : 5.3 -> 5 et 5.5 -> 6 mais 5.25 -> 5.2 push ( @round_nums, $round_num ) ; } else { warn "This var $nb is not a float\n" ; } } else { croak "This number is not defined or is a string\n "; } } } else { croak "Can't round any numbers : missing values or decimal\n" ; } return( \@round_nums ) ; } ## END of SUB =head2 METHOD subtract_num ## Description : subtracting a number to an other ## Input : $number, $number_to_subtr ## Output : $value ## Usage : my ( $value ) = subtract_num( $number, $number_to_subtr ) ; =cut ## START of SUB sub subtract_num { ## Retrieve Values my $self = shift ; my ( $number, $number_to_subtr ) = @_ ; my $value = 0 ; if ( ( defined $number ) and ( defined $number_to_subtr ) ) { $value = ($number - $number_to_subtr) ; } else { warn "The \n" ; } return(\$value) ; } ## END of SUB =head2 METHOD subtract_nums ## Description : subtracting a number to a list of numbers ## Input : $numbers, $numbers_to_subtr ## Output : $values ## Usage : my ( $values ) = subtract_num( $numbers, $numbers_to_subtr ) ; =cut ## START of SUB sub subtract_nums { ## Retrieve Values my $self = shift ; my ( $numbers, $number_to_subtr ) = @_ ; my @values = () ; if ( ( defined $numbers ) and ( defined $number_to_subtr ) ) { foreach my $num ( @{$numbers} ) { push ( @values, ( $num - $number_to_subtr ) ) ; } } return(\@values) ; } ## END of SUB 1 ; __END__ =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc operations.pm =head1 Exports =over 4 =item :ALL is get_factorial truncate_num truncate_nums round_num round_nums =back =head1 AUTHOR Franck Giacomoni E<lt>franck.giacomoni@clermont.inra.frE<gt> =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 VERSION version 1 : 29 / 04 / 2013 version 2 : ?? =cut