############################################################
## RSATWS.pm - Perl module to manage web services for the Regulatory
## Sequence Analysis Tools (RSAT).

package RSATWS;

use SOAP::Lite;
use SOAP::WSDL;

use IPC::Open3;

use vars qw(@ISA);
@ISA = qw(SOAP::Server::Parameters);

use File::Temp qw/ tempfile tempdir /;

unshift (@INC, "../../perl-scripts/lib/");

require RSAT::util;
require RSAT::server;
require RSAT::OrganismManager;

use JSON;

&RSAT::server::InitRSAT();

## Guess RSAT path from module full name
unless ($ENV{RSAT}) {
  $ENV{RSAT} = $0;
  $ENV{RSAT} =~ s|/perl-scripts/.*||; 
  $ENV{RSAT} =~ s|/public_html/.*||;
}

$SCRIPTS = $ENV{RSAT}.'/perl-scripts';
$TMP = $ENV{RSAT}.'/public_html/tmp';

## Define the context
$ENV{RSA_OUTPUT_CONTEXT} = "RSATWS";


#require "RSA.lib";

=pod

=head1 NAME

    RSAT::RSATWS

=head1 DESCRIPTION

Documentation for this module is at
  http://rsat.ulb.ac.be/rsat/web_services/RSATWS_documentation.xml

=cut


################################################################
sub retrieve_seq {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
  my $organism = $args{"organism"};
  my $noorf = $args{"noorf"};
  my $from = $args{"from"};
  my $to = $args{"to"};

  ## List of query genes
  my $query_ref = $args{"query"};
  my $query = "";
  if ($query_ref =~ /ARRAY/) {
      my @query = @{$query_ref};
      foreach $q (@query) {
	  $q =~s/\'//g;
	  $q =~s/\"//g;
      }
      $query = " -q '";
      $query .= join "' -q '", @query;
      $query .= "'";
  } elsif ($query_ref) {
      $query = " -q '";
      $query .= $query_ref;
      $query .= "'";
  }

  my $feattype = $args{"feattype"};
  my $type = $args{"type"};
  my $format = $args{"format"};
  my $all = $args{"all"};
  my $lw = $args{"lw"};
  my $label = $args{"label"};
  my $label_sep = $args{"label_sep"};
  my $nocom = $args{"nocom"};
  my $repeat = $args{'repeat'};
  my $imp_pos = $args{'imp_pos'};

  my $command = "$SCRIPTS/retrieve-seq";

  if ($organism) {
    $organism =~ s/\'//g;
    $organism =~ s/\"//g;
    $command .= " -org '".$organism."'";
  }

  if ($query) {
    $command .= $query;
  }

  if ($noorf == 1) {
    $command .= " -noorf";
  }

  if ($from =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $from =~ s/\'//g;
    $from =~ s/\"//g;
    $command .= " -from '".$from."'";
  }

  if ($to =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $to =~ s/\'//g;
    $to =~ s/\"//g;
    $command .= " -to '".$to."'";
  }

  if ($feattype) {
    $feattype =~ s/\'//g;
    $feattype =~ s/\"//g;
    $command .= " -feattype '".$feattype."'";
  }

  if ($type) {
    $type =~ s/\'//g;
    $type =~ s/\"//g;
    $command .= " -type '".$type."'";
  }

  if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
  } else {
      $format = ".fasta";
  }

  if ($all == 1) {
    $command .= " -all";
  }

  if ($lw) {
    $lw =~ s/\'//g;
    $lw =~ s/\"//g;
    $command .= " -lw '".$lw."'";
  }

  if ($label) {
    $label =~ s/\'//g;
    $label =~ s/\"//g;
    $command .= " -label '".$label."'";
  }

  if ($label_sep) {
    $label_sep =~ s/\'//g;
    $label_sep =~ s/\"//g;
    $command .= " -labelsep '".$label_sep."'";
  }

  if ($nocom == 1) {
    $command .= " -nocom";
  }

  if ($repeat == 1) {
    $command .= " -rm";
  }

  if ($imp_pos == 1) {
    $command .= " -imp_pos";
  }

  &run_WS_command($command, $output_choice, "retrieve-seq", $format);
}


################################################################
sub retrieve_seq_multigenome {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
  my $noorf = $args{"noorf"};
  my $from = $args{"from"};
  my $to = $args{"to"};

  if ($args{"input"}) {
    my $input = $args{"input"};
    chomp $input;
#    $tmp_input_file = `mktemp $TMP/retrieve-seq-multigenome.XXXXXXXXXX`;
    $tmp_input_file = &RSAT::util::make_temp_file("","retrieve-seq-multigenome", 1,0);
    open TMP_IN, ">".$tmp_input_file or die "cannot open temp file ".$tmp_input_file."\n";
    print TMP_IN $input;
    close TMP_IN;
  } elsif ($args{"tmp_input_file"}) {
    $tmp_input_file = $args{"tmp_input_file"};
    $tmp_input_file =~ s/\'//g;
    $tmp_input_file =~ s/\"//g;
  }
  chomp $tmp_input_file;

  my $feattype = $args{"feattype"};
  my $type = $args{"type"};
  my $format = $args{"format"};
  my $all = $args{"all"};
  my $lw = $args{"lw"};
  my $label = $args{"label"};
  my $label_sep = $args{"label_sep"};
  my $nocom = $args{"nocom"};
  my $repeat = $args{'repeat'};
  my $imp_pos = $args{'imp_pos'};
  my $gene_col = $args{'gene_col'};
  my $org_col = $args{'org_col'};

  my $command = "$SCRIPTS/retrieve-seq-multigenome";

  if ($tmp_input_file) {
    $command .= " -i '".$tmp_input_file."'";
  }

  if ($gene_col) {
      $gene_col =~ s/\'//g;
      $gene_col =~ s/\"//g;
      $command .= " -gene_col '".$gene_col."'";
  }

  if ($org_col) {
      $org_col =~ s/\'//g;
      $org_col =~ s/\"//g;
      $command .= " -org_col '".$org_col."'";
  }

  if ($noorf == 1) {
    $command .= " -noorf";
  }

  if ($from =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $from =~ s/\'//g;
    $from =~ s/\"//g;
    $command .= " -from '".$from."'";
  }

  if ($to =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $to =~ s/\'//g;
    $to =~ s/\"//g;
    $command .= " -to '".$to."'";
  }

  if ($feattype) {
    $feattype =~ s/\'//g;
    $feattype =~ s/\"//g;
    $command .= " -feattype '".$feattype."'";
  }

  if ($type) {
    $type =~ s/\'//g;
    $type =~ s/\"//g;
    $command .= " -type '".$type."'";
  }

  if ($format) {
    $format =~ s/\'//g;
    $format =~ s/\"//g;
    $command .= " -format '".$format."'";
  }

  if ($all == 1) {
    $command .= " -all";
  }

  if ($lw) {
    $lw =~ s/\'//g;
    $lw =~ s/\"//g;
    $command .= " -lw '".$lw."'";
  }

  if ($label) {
    $label =~ s/\'//g;
    $label =~ s/\"//g;
    $command .= " -label '".$label."'";
  }

  if ($label_sep) {
    $label_sep =~ s/\'//g;
    $label_sep =~ s/\"//g;
    $command .= " -labelsep '".$label_sep."'";
  }

  if ($nocom == 1) {
    $command .= " -nocom";
  }

  if ($repeat == 1) {
    $command .= " -rm";
  }

  if ($imp_pos == 1) {
    $command .= " -imp_pos";
  }

  &run_WS_command($command, $output_choice, "retrieve-seq-multigenome", $format);
}


################################################################
sub retrieve_ensembl_seq {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $organism = $args{"organism"};
  my $ensembl_host = $args{"ensembl_host"};
  my $dbname = $args{"db_name"};
  my $noorf = $args{"noorf"};
  my $nogene = $args{"nogene"};
  my $from = $args{"from"};
  my $to = $args{"to"};

  ## List of query genes
  my $query_ref = $args{"query"};
  my $query = "";
  if ($query_ref =~/ARRAY/) {
      my @query = @{$query_ref};
      foreach $q (@query) {
	  $q =~s/\'//g;
	  $q =~s/\"//g;
      }
      $query = " -q '";
      $query .= join "' -q '", @query;
      $query .= "'";
  } elsif ($query_ref) {
      $query = " -q '";;
      $query .= $query_ref;
      $query .= "'";
  }

  if ($args{"tmp_infile"}) {
      $tmp_infile = $args{"tmp_infile"};
      $tmp_infile =~ s/\'//g;
      $tmp_infile =~ s/\"//g;
      chomp $tmp_infile;
  }

  my $feattype = $args{"feattype"};
  my $type = $args{"type"};
# my $format = $args{"format"};
  my $all = $args{"all"};
  my $lw = $args{"line_width"};
# my $label = $args{"label"};
# my $label_sep = $args{"label_sep"};
# my $nocom = $args{"nocom"};
  my $repeat = $args{'repeat'};
  my $mask_coding = $args{"mask_coding"};
  my $all_transcripts = $args{"all_transcripts"};
  my $uniqseqs = $args{"unique_sequences"};
  my $first_intron = $args{"first_intron"};
  my $non_coding = $args{"non_coding"};
  my $utr = $args{"utr"};
  my $chrom = $args{"chromosome"};
  my $left = $args{"left"};
  my $right =$args{"right"};
  my $strand = $args{"strand"};
  my $ortho = $args{"ortho"};
  my $taxon = $args{"taxon"};
  my $homology_type = $args{"homology_type"};
  my $header_org = $args{"header_organism"};

  if ($args{"features"}) {
    my $features = $args{"features"};
    chomp $features;
#   $tmp_ft_file = `mktemp $TMP/retrieve-ensembl-seq.XXXXXXXXXX`;
    $prefix = "retrieve-ensemb-seq_WS";
    $tmp_file_path = &RSAT::util::make_temp_file("",$prefix, 1,0); $tmp_file_name = &ShortFileName($tmp_file_path);
    $tmp_ft_file = $tmp_file_path.".ft";
    $tmp_ft_infile = $tmp_file_path."_input.ft";
    open TMP_IN, ">".$tmp_ft_infile or die "cannot open temp file ".$tmp_ft_infile."\n";
    print TMP_IN $feature;
    close TMP_IN;
  } elsif ($args{"tmp_ft_file"}) {
    $tmp_ft_file = $args{"tmp_ft_file"};
    $tmp_ft_file =~ s/\'//g;
    $tmp_ft_file =~ s/\"//g;
  }

  my $feat_format = $args{"feat_format"};
# my $imp_pos = $args{'imp_pos'};

  my $command = "$SCRIPTS/retrieve-ensembl-seq";

  if ($organism) {
    $organism =~ s/\'//g;
    $organism =~ s/\"//g;
    $command .= " -org '".$organism."'";
  }

  if ($ensembl_host) {
    $ensembl_host =~ s/\'//g;
    $ensembl_host =~ s/\"//g;
    $command .= " -ensemblhost '".$ensembl_host."'";
  }

  if ($dbname) {
    $dbname =~ s/\'//g;
    $dbname =~ s/\"//g;
    $command .= " -dbname '".$dbname."'";
  }

  if ($query) {
    $command .= $query;
  }

  if ($noorf == 1) {
    $command .= " -noorf";
  }

  if ($nogene == 1) {
    $command .= " -nogene";
  }

  if ($from =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $from =~ s/\'//g;
    $from =~ s/\"//g;
    $command .= " -from '".$from."'";
  }

  if ($to =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $to =~ s/\'//g;
    $to =~ s/\"//g;
    $command .= " -to '".$to."'";
  }

  if ($feattype) {
    $feattype =~ s/\'//g;
    $feattype =~ s/\"//g;
    $command .= " -feattype '".$feattype."'";
  }

  if ($type) {
    $type =~ s/\'//g;
    $type =~ s/\"//g;
    $command .= " -type '".$type."'";
  }

  if ($format) {
    $format =~ s/\'//g;
    $format =~ s/\"//g;
    $command .= " -format '".$format."'";
  }

  if ($all == 1) {
    $command .= " -all";
  }

  if ($lw) {
      $lw =~ s/\'//g;
      $lw =~ s/\"//g;
      $command .= " -lw '".$lw."'";
  }

#    if ($label) {
#	$label =~ s/\'//g;
#	$label =~ s/\"//g;
#	$command .= " -label '".$label."'";
#    }

#    if ($label_sep) {
#	$label_sep =~ s/\'//g;
#	$label_sep =~ s/\"//g;
#	$command .= " -labelsep '".$label_sep."'";
#    }

#    if ($nocom == 1) {
#	$command .= " -nocom";
#    }

    if ($repeat == 1) {
	$command .= " -rm";
    }

   if ($mask_coding == 1) {
	$command .= " -maskcoding";
    }

   if ($all_transcripts == 1) {
	$command .= " -alltranscripts";
    }

   if ($uniqseqs == 1) {
	$command .= " -uniqseqs";
    }


   if ($first_intron == 1) {
	$command .= " -firstintron";
    }

   if ($non_coding == 1) {
	$command .= " -noncoding";
    }

  if ($utr) {
      $utr =~ s/\'//g;
      $utr =~ s/\"//g;
      $command .= " -utr '".$utr."'";
  }

    if ($chrom) {
	$chrom =~ s/\'//g;
	$chrom =~ s/\"//g;
	$command .= " -chrom '".$chrom."'";
    }

    if ($left) {
	$left =~ s/\'//g;
	$left =~ s/\"//g;
	$command .= " -left '".$left."'";
    }

    if ($right) {
	$right =~ s/\'//g;
	$right =~ s/\"//g;
	$command .= " -right '".$right."'";
    }

    if ($strand) {
	$strand =~ s/\'//g;
	$strand =~ s/\"//g;
	$command .= " -strand '".$strand."'";
    }

    if ($features) {
	$features =~ s/\'//g;
	$features =~ s/\"//g;
	$command .= " -ftfile '".$tmp_ft_file."'";
    }

    if ($feat_format) {
	$feat_format =~ s/\'//g;
	$feat_format =~ s/\"//g;
	$command .= " -ftfileformat '".$feat_format."'";
    }

   if ($ortho == 1) {
	$command .= " -ortho";
    }

    if ($taxon) {
	$taxon =~ s/\'//g;
	$taxon =~ s/\"//g;
	$command .= " -taxon '".$taxon."'";
    }

    if ($homology_type) {
	$homology_type =~ s/\'//g;
	$homology_type =~ s/\"//g;
	$command .= " -ortho_type '".$homology_type."'";
    }

    if ($header_org) {
	$header_org =~ s/\'//g;
	$header_org =~ s/\"//g;
	$command .= " -header_org '".$header_org."'";
    }

#    if ($imp_pos == 1) {
#	$command .= " -imp_pos";
#    }

  if ($args{"tmp_infile"}) {
      $command .= " -i '".$tmp_infile."'";
  }

 &run_WS_command($command, $output_choice, "retrieve-ensembl-seq", $format)
}


################################################################
sub purge_seq {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_infile = `mktemp $TMP/purge-sequence.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","purge-sequence", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
	$tmp_infile =~ s/\'//g;
	$tmp_infile =~ s/\"//g;
    }
    chomp $tmp_infile;
    my $format = $args{"format"};
    my $match_length = $args{"match_length"};
    my $mismatch = $args{"mismatch"};
    my $str = $args{"str"};
    my $delete = $args{"delete"};
    my $mask_short = $args{"mask_short"};

    my $command = "$SCRIPTS/purge-sequence";

    if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
  } else {
      $format = ".fasta";
  }

    if ($str =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($delete == 1) {
      $command .= " -del";
    }

    if ($mask_short) {
      $mask_short =~ s/\'//g;
      $mask_short =~ s/\"//g;
      $command .= " -mask_short '".$mask_short."'";
    }

    if ($match_length) {
	$match_length =~ s/\'//g;
	$match_length =~ s/\"//g;
	$command .= " -ml '".$match_length."'";
    }

    if ($mismatch) {
	$mismatch =~ s/\'//g;
	$mismatch =~ s/\"//g;
	$command .= " -mis '".$mismatch."'";
    }

    $command .= " -i '".$tmp_infile."'";

    &run_WS_command($command, $output_choice, "purge-sequence", $format);
}


################################################################
sub oligo_analysis {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_infile = `mktemp $TMP/oligo.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","oligo-analysis", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }
    chomp $tmp_infile;
    my $verbosity = $args{'verbosity'};
    my $format = $args{"format"};
    my $length = $args{"length"};
    my $organism = $args{"organism"};
    my $background = $args{"background"};
    my $stats = $args{"stats"};
    my $noov = $args{"noov"};
    my $str = $args{"str"};
    my $sort = $args{"sort"};
    my $quick_if_possible = $args{"quick_if_possible"};

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
#      my %lth = %{$lth_ref};
#      foreach $lt (keys %lth) {
#	$lt =~s/\'//g;
#	$lt =~s/\"//g;
#	$value = $lth{$lt};
#	$value =~s/\'//g;
#	$value =~s/\"//g;
#	$lthreshold .= " -lth ".$lt." ".$value;
#      }
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
	$lt =~s/\'//g;
	$lt =~s/\"//g;
	@_lt = split / /, $lt;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
	@_lt = split / /, $lth_ref;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
	$ut =~s/\'//g;
	$ut =~s/\"//g;
	@_ut = split / /, $ut;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } elsif ($uth_ref) {
	@_ut = split / /, $uth_ref;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }

    my $pseudo = $args{'pseudo'};

    my $command = "$SCRIPTS/oligo-analysis";

    if ($verbosity) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
    }

    if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
    }

    if ($organism) {
      $organism =~ s/\'//g;
      $organism =~ s/\"//g;
      $command .= " -org '".$organism."'";
    }

    if ($background) {
      $background =~ s/\'//g;
      $background =~ s/\"//g;
      $command .= " -bg '".$background."'";
    }

    if ($stats) {
      $stats =~ s/\'//g;
      $stats =~ s/\"//g;
      $command .= " -return '".$stats."'";
    }

    if ($noov == 1) {
      $command .= " -noov";
    }

    if ($str =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($sort == 1) {
      $command .= " -sort";
    }
    
    if($quick_if_possible == 1){
        $command .= " -quick_if_possible";
    }
    
    if ($lth) {
      $command .= $lth;
    }

    if ($uth) {
      $command .= $uth;
    }

    if ($pseudo =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
	$pseudo =~ s/\'//g;
	$pseudo =~ s/\"//g;
	$command .= " -pseudo '".$pseudo."'";
    }

    if ($length) {
	$length =~ s/\'//g;
	$length =~ s/\"//g;
	$command .= " -l '".$length."'";
    }

    $command .= " -i '".$tmp_infile."'";

    &run_WS_command($command, $output_choice, "oligo-analysis", "tab");
}
################################################################
sub oligo_analysis_pipeline {
    my ($self, $args_ref) = @_;
    
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
        $output_choice = 'both';
    }
    ## create config file
    my %config_json = {};
    my $tmp_path = &RSAT::util::make_temp_file("","oligo-analysis", 1,1);
    if(!(-d $tmp_path)) { `mkdir $tmp_path` ; }
    $config_json{"path"} = $tmp_path;
    
    $config_json{"scripts"} = $SCRIPTS;
    
    my $cne_coords = $args{"cne_coords"};
    my $genome = $args{"genome"};
    if($genome){ $config_json{"genome"} = $genome; }
    
    if ($cne_coords){
        chomp $cne_coords;
        $cne_coords_file = $tmp_path . "/cne_coords.txt";
        open TMP_IN, ">".$cne_coords_file or die "cannot open temp file ".$cne_coords_file."\n";
        print TMP_IN $cne_coords;
        close TMP_IN;
        $config_json{"cne_coords"} = $cne_coords_file;
    }
    elsif ($args{"sequence"}) {
        my $sequence = $args{"sequence"};
        chomp $sequence;
        $tmp_infile = $tmp_path . "/sequence.fasta";
        open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
        print TMP_IN $sequence;
        close TMP_IN;
        $config_json{"sequence"} = $tmp_infile;
        $config_json{"cne_coords"} = "";
    } elsif ($args{"tmp_infile"}) {
        $tmp_infile = $tmp_path . "/sequence.fasta";
        open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
        open $fh, "<", $args{"tmp_infile"};
        while(<$fh>){
            print TMP_IN $_;
            print TMP_IN "\n";
        }
        close TMP_IN;
        close $fh;
        $config_json{"sequence"} = $tmp_infile;
        $config_json{"cne_coords"} = "";
    }
    if($args{"purge_seq"} == 1){ $config_json{"purge_seq"} = 1;} else { $config_json{"purge_seq"} = 0;}
    if($args{"format"}){ $config_json{"format"} = $args{"format"}; }
    if($args{"organism"}){ $config_json{"organism"} = $args{"organism"}; }
    if($args{"background"}) { $config_json{"background"} = $args{"background"}; }
    if($args{"stats"}){ $config_json{"return"} = $args{"stats"}; }
    if($args{"noov"} == 1){ $config_json{"noov"} = "-noov"; }
    else { $config_json{"noov"} = ""; }
    if($args{"str"}){
        if ($args{"str"} == 1 || $args{"str"} == 2) {
            $config_json{"strand"} = " -".$args{"str"}."str";
        } else {
            die "str value must be 1 or 2";
        }
    }
    
    ## List of length
    my $length_ref = $args{"length"};
    if($length_ref){
        $config_json{"length"} = ();
        if(!($length_ref =~ /ARRAY/)) { push @{$config_json{"length"}}, $length_ref; }
        else{
            foreach $l (@{$length_ref}){
                push @{$config_json{"length"}}, $l;
            }
        }
    }
    
    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
        my @lth = @{$lth_ref};
        foreach $lt (@lth) {
            $lt =~s/\'//g;
            $lt =~s/\"//g;
            @_lt = split / /, $lt;
            $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
        }
    } elsif ($lth_ref) {
        @_lt = split / /, $lth_ref;
        $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }
    if($lth) { $config_json{"lth"} = $lth; }
    
    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
        my @uth = @{$uth_ref};
        foreach $ut (@uth) {
            $ut =~s/\'//g;
            $ut =~s/\"//g;
            @_ut = split / /, $ut;
            $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
        }
    } elsif ($uth_ref) {
        @_ut = split / /, $uth_ref;
        $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }
    if($uth) { $config_json{"uth"} = $uth; }
    
    if($args{"pseudo"}){ $config_json{"pseudo"} = " -pseudo " . $args{'pseudo'}; }
    else{ $config_json{"pseudo"} = ""; }
    
    if($args{"max_asmb_nb"}) { $config_json{"max_asmb_nb"} = $args{"max_asmb_nb"}; }
    if($args{"maxfl"}) { $config_json{"flanks"} = $args{"maxfl"}; }
    if($args{"min_weight"}) { $config_json{"min_weight"} = $args{"min_weight"}; }
    if($args{"output_prefix"}) { $config_json{"output_prefix"} = $args{"output_prefix"}; }
    
    open my $fh, ">", "$tmp_path/config.json";
    print $fh encode_json(\%config_json);
    
    my $command = "$SCRIPTS/snakemake --snakefile $SCRIPTS/oligo_analysis_pipeline --configfile $tmp_path/config.json --core 5 --directory $tmp_path oligo_all";

    local $start_time = &RSAT::util::StartScript();
    
    my $tmp_outfile = $tmp_path."/snakemake_log";
    my $snakemake_log = system("$command 2> $tmp_outfile");
    
    my $result = "";
    
    my $result_URL = $ENV{rsat_www}."/tmp/";
    $result .= "Sequence> $result_URL" . &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/sequence.fasta") . "\n";
    if($args{"purge_seq"} == 1){
        $result .= "Purged Sequence> $result_URL" . &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/sequence.fasta.purged") . "\n";
    }
    $result .= "Merged oligos> $result_URL" . &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis.tab") . "\n";
    $result .= "Assembly> $result_URL" . &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis.asmb") . "\n";
    $result .= "Significance matrices> $result_URL" . &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis_pssm_sig_matrices.tf") ."\n";
    $result .= "Rescaled significance matrices> $result_URL". &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis_pssm_sig_matrices_rescaled.tf") ."\n";
    $result .= "Final matrices(transfac format)> $result_URL". &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis_pssm_count_matrices.tf") . "\n";
    $result .= "Final matrices (tab format)> $result_URL". &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis_pssm_count_matrices.txt") ."\n";
    $result .= "Converted matrices> $result_URL". &RSAT::util::RelativePath(&RSAT::util::get_pub_temp(), "$tmp_path/oligo_analysis_pssm_count_matrices.txt_converted.tab");
    
    ## Report execution time in the log file (depends on the satus of
    ## exec_time property)
    my $exec_time = &RSAT::util::ReportExecutionTime($start_time); ## This has to be done for all the commands sent to WS
    
    
    if ($output_choice eq 'server') {
        return SOAP::Data->name('response' => \SOAP::Data->value(
        SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
        #TO FIX in RSATWS.wsdl		  SOAP::Data->name('URL' => $result_URL),
        SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
        SOAP::Data->name('client' => 'NA')))
        ->attr({'xmlns' => ''});
    } elsif ($output_choice eq 'client') {
        return SOAP::Data->name('response' => \SOAP::Data->value(
        SOAP::Data->name('server' => 'NA'),
        SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
        SOAP::Data->name('client' => $result)))
        ->attr({'xmlns' => ''});
    } elsif ($output_choice eq 'both') {
        #      &RSAT::error::FatalError("HELLO", "tmp_outfile", $tmp_outfile, &RSAT::util::hide_RSAT_path($tmp_outfile));
        
        return SOAP::Data->name('response' => \SOAP::Data->value(
        SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
        #TO FIX in RSATWS.wsdl		  SOAP::Data->name('URL' => $result_URL),
        SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
        SOAP::Data->name('client' => $result)))
        ->attr({'xmlns' => ''});
    }

}


################################################################
sub oligo_diff {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

    if ($args{"test"}) {
	my $test = $args{"test"};
	chomp $test;
#	$tmp_test_infile = `mktemp $TMP/oligo-diff.XXXXXXXXXX`;
	$tmp_test_infile = &RSAT::util::make_temp_file("","oligo-diff-test", 1,0);
	open TMP_IN, ">".$tmp_test_infile or die "cannot open temp file ".$tmp_test_infile."\n";
	print TMP_IN $test;
	close TMP_IN;
    } elsif ($args{"tmp_test_infile"}) {
	$tmp_test_infile = $args{"tmp_test_infile"};
    }
    chomp $tmp_test_infile;

    if ($args{"control"}) {
	my $control = $args{"control"};
	chomp $control;
#	$tmp_control_infile = `mktemp $TMP/oligo-diff.XXXXXXXXXX`;
	$tmp_control_infile = &RSAT::util::make_temp_file("","oligo-diff-ctrl", 1,0);
	open TMP_IN, ">".$tmp_control_infile or die "cannot open temp file ".$tmp_control_infile."\n";
	print TMP_IN $control;
	close TMP_IN;
    } elsif ($args{"tmp_control_infile"}) {
	$tmp_control_infile = $args{"tmp_control_infile"};
    }
    chomp $tmp_control_infile;

    my $verbosity = $args{'verbosity'};
    my $side = $args{"side"};
    my $length = $args{"length"};
    my $nopurge = $args{"nopurge"};
    my $noov = $args{"noov"};
    my $str = $args{"str"};

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
	$lt =~s/\'//g;
	$lt =~s/\"//g;
	@_lt = split / /, $lt;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
	@_lt = split / /, $lth_ref;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
	$ut =~s/\'//g;
	$ut =~s/\"//g;
	@_ut = split / /, $ut;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } elsif ($uth_ref) {
	@_ut = split / /, $uth_ref;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }

    my $command = "$SCRIPTS/oligo-diff";

    if ($verbosity) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
    }

    if ($side) {
      $side =~ s/\'//g;
      $side =~ s/\"//g;
      $command .= " -side '".$side."'";
    }

    if ($nopurge == 1) {
      $command .= " -nopurge";
    }

    if ($noov == 1) {
      $command .= " -noov";
    }

    if ($str =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($lth) {
      $command .= $lth;
    }

    if ($uth) {
      $command .= $uth;
    }

    if ($length) {
	$length =~ s/\'//g;
	$length =~ s/\"//g;
	$command .= " -l '".$length."'";
    }

    $command .= " -test '".$tmp_test_infile."'";
    $command .= " -ctrl '".$tmp_control_infile."'";

    &run_WS_command($command, $output_choice, "oligo-diff", "tab");
}


################################################################
##
## peak-motifs
##
sub peak_motifs {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
#    unless ($output_choice) {
    $output_choice = 'server';
#    }

#    my $command = $self->peak_motifs_cmd(%args);
    my $command = $self->peak_motifs_cmd(%args);

    my $date = &RSAT::util::AlphaDate();
    $date =~ s/\n//;

    my $output_directory = "peak-motifs_ws";
    my $output_path = &RSAT::util::make_temp_file("", $output_directory, 1, 1); 
    my $output_prefix = "peak-motifs";
    $output_path =~ s|\/\/|\/|g;
    system("mkdir -p $output_dir_full_path; chmod 755 $output_dir_full_path");

    $command .= " -outdir '".$output_path."'";
    $command .= " -prefix '".$output_prefix."'";

    my $tmp_synthesis = &RSAT::util::rsat_path_to_url($output_path."/".$output_prefix."_synthesis.html");
    my $tmp_outzip = &RSAT::util::rsat_path_to_url($output_path."/".$output_prefix."_archive.zip");
#    my $result_url = &RSAT::util::rsat_path_to_url($output_path);
    my $error_file = $output_path.".err";
    my $error_url = &RSAT::util::rsat_path_to_url($error_file);

    my $response = "The server is now processing your request.\n";
    $response .= "Once it will be finished, the result will become available at the following URL\n";
    $response .= "\t$tmp_synthesis\n";
    $response .= "A zipped archive will also be available at the following URL\n";
    $response .= "\t$tmp_outzip\n";
    $response .= "Otherwise, check the following page for error track\n";
    $response .= "\t$error_url\n";

    system("$command &>$error_file &");

    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"peak-motifs",output_choice=>$output_choice);

    if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				SOAP::Data->name('server' => $response),
				SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
    } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				SOAP::Data->name('server' => 'NA'),
				SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				SOAP::Data->name('client' => $response)))
	  ->attr({'xmlns' => ''});
    } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				SOAP::Data->name('server' =>  $response),
				SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				SOAP::Data->name('client' => $response)))
	  ->attr({'xmlns' => ''});
    }

     local(*HIS_IN, *HIS_OUT, *HIS_ERR);
     my $childpid = open3(*HIS_IN, *HIS_OUT, *HIS_ERR, $command);
     my @outlines = <HIS_OUT>;    # Read till EOF.
     my @errlines = <HIS_ERR>;    # XXX: block potential if massive

##    my $result = join('', @outlines);
     my $stderr;

     foreach my $errline(@errlines) {
     	## Some errors and RSAT warnings are not considered as fatal errors
     	unless (($errline =~ 'Use of uninitialized value') || ($errline =~'WARNING') || ($errline =~'Odd number of elements in hash assignment')) {
     	    $stderr .= $errline;
     	}
	## RSAT warnings are added at the end of results
##	if ($errline =~'WARNING') {
##	    $result .= $errline;
##	}
     }
     $stderr = &error_handling($stderr, 1);
     close HIS_OUT;
     close HIS_ERR;

    if ($stderr) {
      die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }
}


sub peak_motifs_cmd {
    my ($self, %args) =@_;

    if ($args{"test"}) {
	my $test = $args{"test"};
	chomp $test;
	$tmp_test_infile = &RSAT::util::make_temp_file("","peak-motifs", 1,0);
	open TMP_IN, ">".$tmp_test_infile or die "cannot open temp file ".$tmp_test_infile."\n";
	print TMP_IN $test;
	close TMP_IN;
    } elsif ($args{"tmp_test_infile"}) {
	$tmp_test_infile = $args{"tmp_test_infile"};
    }
    chomp $tmp_test_infile;

    if ($args{"control"}) {
	my $control = $args{"control"};
	chomp $control;
	$tmp_control_infile = &RSAT::util::make_temp_file("","peak-motifs-ctrl", 1,0);
	open TMP_IN, ">".$tmp_control_infile or die "cannot open temp file ".$tmp_control_infile."\n";
	print TMP_IN $control;
	close TMP_IN;
    } elsif ($args{"tmp_control_infile"}) {
	$tmp_control_infile = $args{"tmp_control_infile"};
    }
    chomp $tmp_control_infile;

    my $verbosity = $args{'verbosity'};
    my $max_seq_length = $args{"max_seq_length"};
    my $max_motif_number = $args{"max_motif_number"};

    if ($args{"ref_motif"}) {
        my $ref_motif = $args{"ref_motif"};
        chomp $ref_motif;
	$tmp_ref_motif_infile = &RSAT::util::make_temp_file("","peak-motifs_ref-motifs", 1,0);
        open TMP_REF, ">".$tmp_ref_motif_infile or die "cannot open temp file ".$tmp_ref_motif_infile."\n";
        print TMP_REF $ref_motif;
        close TMP_REF;
    }
    chomp $tmp_ref_motif_infile;

    my $top_peaks = $args{"top_peaks"};
    my $min_length = $args{"min_length"};
    my $max_length = $args{"max_length"};
    my $markov = $args{"markov"};
    my $min_markov = $args{"min_markov"};
    my $max_markov = $args{"max_markov"};
    my $noov = $args{"noov"};
    my $str = $args{"str"};
    my $class_int = $args{"class_int"};
    my $motif_db = $args{"motif_db"};
##  my $output_dir = $args{"output_dir"};
##  my $output_prefix = $args{"output_prefix"};
    my $graph_title = $args{"graph_title"};
    my $image_format = $args{"image_format"};
    my $disco = $args{"disco"};
    my $source = $args{"source"};
    my $task = $args{"task"};
 
   my $command = "$SCRIPTS/peak-motifs";

    if ($verbosity) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
    }

    if ($max_seq_length) {
	$max_seq_length =~ s/\'//g;
	$max_seq_length =~ s/\"//g;
	$command .= " -max_seq_len '".$max_seq_length."'";
    }

#    if ($ref_motif) {
#      $ref_motif =~ s/\'//g;
#      $ref_motif =~ s/\"//g;
#      $command .= " -ref_motifs'".$ref_motif."'";
#    }

    if ($noov == 1) {
      $command .= " -noov";
    }

    if ($str =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($motif_db) {
	$motif_db =~s/\'//g;
	$motif_db =~s/\"//g;
	my @_motif_db = split(',', $motif_db);
	my %matrix_db = &RSAT::server::supported_motif_databases(); ## TO DEBUG (JvH, 2017-12-12): %motif_db est vide
	foreach my $db (@_motif_db) {
	  if (defined($matrix_db{$db})) {
	    ## Select matrix DB in a case-insensitive mode
#	    $matrix_db <- $matrix_db{$db};
	    $command .= " -motif_db ".$matrix_db{$db}{'name'}." ".$matrix_db{$db}{'format'}." ".$ENV{RSAT}."/public_html/motif_databases/".$matrix_db{$db}{'file'};
	  } else {
#	  unless (/$db/ ~~ %matrix_db) {
	    my $supported_matrix_db = join(", ", sort(keys(%matrix_db)));
	    die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("$db motif database is unknown. Supported: ".$supported_matrix_db);
	  }
	}
    }

    if ($graph_title) {
	$graph_title =~ s/\'//g;
	$graph_title =~ s/\"//g;
	$command .= " -title '".$graph_title."'";
    }

    if ($image_format) {
	$image_format =~ s/\'//g;
	$image_format =~ s/\"//g;
	$command .= " -img_format '".$image_format."'";
    }

    if ($source) {
	$source =~ s/\'//g;
	$source =~ s/\"//g;
	$command .= " -source '".$source."'";
    }

    if ($task) {
	$task =~ s/\'//g;
	$task =~ s/\"//g;
	$command .= " -task '".$task."'";
    }

    if ($disco) {
	$disco =~ s/\'//g;
	$disco =~ s/\"//g;
	$command .= " -disco '".$disco."'";
    }

    if ($max_motif_number) {
	$max_motif_number =~ s/\'//g;
	$max_motif_number =~ s/\"//g;
	$command .= " -nmotifs '".$max_motif_number."'";
    }

    if ($top_peaks) {
	$top_peaks =~ s/\'//g;
	$top_peaks =~ s/\"//g;
	$command .= " -top_peaks '".$top_peaks."'";
    }

    if ($min_length) {
	$min_length =~ s/\'//g;
	$min_length =~ s/\"//g;
	$command .= " -minol '".$min_length."'";
    }

    if ($max_length) {
	$max_length =~ s/\'//g;
	$max_length =~ s/\"//g;
	$command .= " -maxol '".$max_length."'";
    }

    if ($markov) {
	$markov =~ s/\'//g;
	$markov =~ s/\"//g;
	$command .= " -markov '".$markov."'";
    }

    if ($min_markov) {
	$min_markov =~ s/\'//g;
	$min_makov =~ s/\"//g;
	$command .= " -min_markov '".$min_markov."'";
    }

    if ($max_markov) {
	$max_markov =~ s/\'//g;
	$max_markov =~ s/\"//g;
	$command .= " -max_markov '".$max_markov."'";
    }

    if ($class_int =~ /\d/) {
	$class_int =~ s/\'//g;
	$class_int =~ s/\"//g;
	$command .= " -ci '".$class_int."'";
    }

    $command .= " -i '".$tmp_test_infile."'";

    if ($tmp_control_infile) {
        $command .= " -ctrl '".$tmp_control_infile."'";
    }

    if ($tmp_ref_motif_infile) {
	$command .= " -ref_motifs '".$tmp_ref_motif_infile."'";
    }

    return ($command);
#    &run_WS_command($command, $output_choice, "peak-motifs", "tab");
#    &run_WS_command($command, $output_choice, "peak-motifs");
}


################################################################
sub dyad_analysis {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_infile = `mktemp $TMP/dyad.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","dyad-analysis", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }
    chomp $tmp_infile;
    my $verbosity = $args{'verbosity'};
    my $format = $args{"format"};
    my $length = $args{"length"};
    my $spacing = $args{"spacing"};
    my $type = $args{"type"};
    my $organism = $args{"organism"};
    my $background = $args{"background"};
    my $stats = $args{"stats"};
    my $noov = $args{"noov"};
    my $str = $args{"str"};
    my $sort = $args{"sort"};
    my $under = $args{"under"};
    my $two_tails = $args{"two_tails"};
    my $zeroocc = $args{"zeroocc"};

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
	$lt =~s/\'//g;
	$lt =~s/\"//g;
	@_lt = split / /, $lt;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
	@_lt = split / /, $lth_ref;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
	$ut =~s/\'//g;
	$ut =~s/\"//g;
	@_ut = split / /, $ut;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } elsif ($uth_ref) {
	@_ut = split / /, $uth_ref;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }

    my $command = "$SCRIPTS/dyad-analysis";

    if ($verbosity) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
    }

    if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
    }

    if ($organism) {
      $organism =~ s/\'//g;
      $organism =~ s/\"//g;
      $command .= " -org '".$organism."'";
    }

    if ($background) {
      $background =~ s/\'//g;
      $background =~ s/\"//g;
      $command .= " -bg '".$background."'";
    }

    if ($stats) {
      $stats =~ s/\'//g;
      $stats =~ s/\"//g;
      $command .= " -return '".$stats."'";
    }

    if ($noov == 1) {
      $command .= " -noov";
    }

    if ($str =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($sort == 1) {
      $command .= " -sort";
    }

    if ($lth) {
      $command .= $lth;
    }

    if ($uth) {
      $command .= $uth;
    }

    if ($length) {
	$length =~ s/\'//g;
	$length =~ s/\"//g;
	$command .= " -l '".$length."'";
    }

    if ($spacing) {
	$spacing =~ s/\'//g;
	$spacing =~ s/\"//g;
	$command .= " -sp '".$spacing."'";
    }

    if ($type) {
	$type =~ s/\'//g;
	$type =~ s/\"//g;
	$command .= " -type '".$type."'";
    }

    if ($under == 1) {
      $command .= " -under";
    }

    if ($two_tails == 1) {
      $command .= " -two_tails";
    }

    if ($zeroocc == 1) {
      $command .= " -zeroocc";
    }

    $command .= " -i '".$tmp_infile."'";

    &run_WS_command($command, $output_choice, "dyad-analysis", "tab");
}


################################################################
sub position_analysis {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_infile = `mktemp $TMP/position.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","position-analysis", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }
    chomp $tmp_infile;
    my $verbosity = $args{'verbosity'};
    my $format = $args{"format"};
    my $length = $args{"length"};
    my $seq_type = $args{"seq_type"};
    my $last = $args{"last"};
    my $mask = $args{"mask"};
    my $noov = $args{"noov"};
    my $str = $args{"str"};
    my $class_int = $args{"class_int"};
    my $origin = $args{"origin"};
    my $offset = $args{"offset"};
    my $group_rc = $args{"group_rc"};
    my $sort = $args{"sort"};
    my $return = $args{"return"};
    my $lth_chi = $args{"lth_chi"};
    my $lth_sig = $args{"lth_sig"};
    my $lth_occ = $args{"lth_occ"};
    my $uth_rank = $args{"uth_rank"};
    my $max_graphs = $args{'max_graphs'};

    if ($args{"pattern"}) {
	my $pattern = $args{"pattern"};
	chomp $pattern;
#	$tmp_pattern_infile = `mktemp $TMP/position.XXXXXXXXXX`;
	$tmp_pattern_infile = &RSAT::util::make_temp_file("","position-analysis_patterns", 1,0);
	open TMP_PATT_IN, ">".$tmp_pattern_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_PATT_IN $pattern;
	close TMP_PATT_IN;
    } elsif ($args{"tmp_pattern_infile"}) {
	$tmp_pattern_infile = $args{"tmp_pattern_infile"};
    }
    chomp $tmp_pattern_infile;

    my $score_column = $args{'score_column'};
    my $min_pos = $args{'min_pos'};
    my $max_pos = $args{'max_pos'};
    my $no_check = $args{'no_check'};
    my $no_filter = $args{'no_filter'};
    my $image_format = $args{'image_format'};
    my $title = $args{'title'};

    my $command = "$SCRIPTS/position-analysis";

    if ($verbosity) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
    }

    if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
    }

    if ($seq_type) {
      $seq_type =~ s/\'//g;
      $seq_type =~ s/\"//g;
      $command .= " -seqtype '".$seq_type."'";
    }

    if ($last =~ /\d/) {
      $last =~ s/\'//g;
      $last =~ s/\"//g;
      $command .= " -last '".$last."'";
    }

    if ($mask) {
      $mask =~ s/\'//g;
      $mask =~ s/\"//g;
      $command .= " -mask '".$mask."'";
    }

    if ($noov == 1) {
      $command .= " -noov";
    }

    if ($str =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($group_rc == 1) {
      $command .= " -grouprc";
    } elsif ($group_rc == 0) {
      $command .= " -nogrouprc";
    }

    if ($sort == 1) {
      $command .= " -sort";
    }

    if ($origin) {
      $origin =~ s/\'//g;
      $origin =~ s/\"//g;
      $command .= " -origin '".$origin."'";
    }

    if ($offset =~ /\d/) {
      $offset =~ s/\'//g;
      $offset =~ s/\"//g;
      $command .= " -offset '".$offset."'";
    }

    if ($lth_chi =~ /\d/) {
      $lth_chi =~ s/\'//g;
      $lth_chi =~ s/\"//g;
      $command .= " -lth_chi '".$lth_chi."'";
    }

    if ($lth_sig =~ /\d/) {
      $lth_sig =~ s/\'//g;
      $lth_sig =~ s/\"//g;
      $command .= " -lth_sig '".$lth_sig."'";
    }

    if ($lth_occ =~ /\d/) {
      $lth_occ =~ s/\'//g;
      $lth_occ =~ s/\"//g;
      $command .= " -lth_occ '".$lth_occ."'";
    }

    if ($uth_rank =~ /\d/) {
      $uth_rank =~ s/\'//g;
      $uth_rank =~ s/\"//g;
      $command .= " -uth_rank '".$uth_rank."'";
    }

    if ($max_graphs =~ /\d/) {
      $max_graphs =~ s/\'//g;
      $max_graphs =~ s/\"//g;
      $command .= " -max_graphs '".$max_graphs."'";
    }

    if ($class_int =~ /\d/) {
	$class_int =~ s/\'//g;
	$class_int =~ s/\"//g;
	$command .= " -ci '".$class_int."'";
    }

    if ($length) {
	$length =~ s/\'//g;
	$length =~ s/\"//g;
	$command .= " -l '".$length."'";
    }

    if ($score_column =~ /\d/) {
	$score_column =~ s/\'//g;
	$score_column =~ s/\"//g;
	$command .= " -sc '".$score_column."'";
    }

    if ($min_pos =~ /\d/) {
	$min_pos =~ s/\'//g;
	$min_pos =~ s/\"//g;
	$command .= " -minpos '".$min_pos."'";
    }

    if ($max_pos =~ /\d/) {
	$max_pos =~ s/\'//g;
	$max_pos =~ s/\"//g;
	$command .= " -maxpos '".$max_pos."'";
    }

    if ($no_check == 1) {
      $command .= " -nocheck";
    }

    if ($no_filter == 1) {
      $command .= " -nofilter";
    }

    if ($image_format) {
      $image_format =~ s/\'//g;
      $image_format =~ s/\"//g;
      $command .= " -img_format '".$image_format."'";
    }

    if ($title) {
      $title =~ s/\'//g;
      $title =~ s/\"//g;
      $command .= " -title '".$title."'";
    }

    $command .= " -i '".$tmp_infile."'";

    $command .= " -pl '".$tmp_pattern_infile."'";

    &run_WS_command($command, $output_choice, "position-analysis", "tab");
}


################################################################
sub pattern_assembly {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
      $output_choice = 'both';
    }
  my $command = "$SCRIPTS/pattern-assembly";

  ## Input file
  if ($args{"input"}) {
    my $input = $args{"input"};
    chomp $input;
#    $tmp_infile = `mktemp $TMP/pattern-assembly.XXXXXXXXXX`;
    $tmp_infile = &RSAT::util::make_temp_file("","pattern-assembly", 1,0);
    open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
    print TMP_IN $input;
    close TMP_IN;
  } elsif ($args{"tmp_infile"}) {
    $tmp_infile = $args{"tmp_infile"};
  }
  chomp $tmp_infile;
  $command .= " -i '".$tmp_infile."'";

  ## Verbosity
  my $v = $args{"verbosity"};
  if ($v =~ /^\d+$/) {
    $command .= " -v ".$v;
  }

  ## Strands
  my $str = $args{"str"};
  if ($str =~ /\d/) {
    if ($str == 1 || $str == 2) {
      $command .= " -".$str."str";
    } else {
      die "str value must be 1 or 2";
    }
  }

  ## Score column
  my $score_col = $args{score_col};
  if ($score_col =~ /^\d+$/) {
#  if (&IsNatural($score_col)) {
    $command .= " -sc ".$score_col;
  }

  ## Max flanking segment size
  my $maxfl = $args{maxfl};
  if ($maxfl =~ /^\d+$/) {
#  if (&IsNatural($maxfl)) {
    $command .= " -maxfl ".$maxfl;
  }

  ## Max substitutions
  my $subst = $args{subst};
  if ($subst =~ /^\d+$/) {
#  if (&IsNatural($subst)) {
    $command .= " -subst ".$subst;
  }

  ## Max number of assemblies
  my $max_asmb_nb = $args{max_asmb_nb};
  if ($max_asmb_nb =~ /^\d+$/) {
    $command .= " -max_asmb_nb ".$max_asmb_nb;
  }

  ## Max assembly size (number of patterns per cluster)
  my $max_asmb_size = $args{max_asmb_size};
  if ($max_asmb_size =~ /^\d+$/) {
#  if (&IsNatural($maxcl)) {
    $command .= " -max_asmb_size ".$max_asmb_size;
  }

  ## Max number of patterns in total
  my $maxpat = $args{maxpat};
  if ($maxpat =~ /^\d+$/) {
#  if (&IsNatural($maxpat)) {
    $command .= " -maxpat ".$maxpat;
  }

  ## Max number of top patterns to use for assembly
  my $toppat = $args{toppat};
  if ($toppat =~ /^\d+$/) {
#  if (&IsNatural($toppat)) {
    $command .= " -toppat ".$toppat;
  }

    &run_WS_command($command, $output_choice, "pattern-assembly", "asmb");
}


################################################################
sub dna_pattern {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_infile = `mktemp $TMP/dna_pattern.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","dna-pattern", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }
    chomp $tmp_infile;

    my $tmp_pattern_file;
    if ($args{"pattern_file"}) {
	my $patterns = $args{"pattern_file"};
	chomp $patterns;
#	$tmp_pattern_file = `mktemp $TMP/dnapatt-pattern_file.XXXXXXXXXX`;
	$tmp_pattern_file = &RSAT::util::make_temp_file("","dnapat_patterns", 1,0);
	open TMP_IN, ">".$tmp_pattern_file or die "cannot open temp file ".$tmp_pattern_file."\n";
	print TMP_IN $patterns;
	close TMP_IN;
    } elsif ($args{"tmp_pattern_file"}){
	$tmp_pattern_file = $args{"tmp_pattern_file"};
    }

    my $format = $args{"format"};
    my $pattern = $args{"pattern"};
    my $subst = $args{"subst"};
    my $id = $args{"id"};
    my $origin = $args{"origin"};
    my $noov = $args{"noov"};
    my $str = $args{"str"};
    my $sort = $args{"sort"};
    my $th = $args{"th"};
    my $score = $args{'score'};
    my $return = $args{'return'};

    my $command = "$SCRIPTS/dna-pattern";

    if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
    }

    if ($pattern) {
      chomp $pattern;
      $pattern =~ s/\'//g;
      $pattern =~ s/\"//g;
      $command .= " -p '".$pattern."'";
    }

    if ($tmp_pattern_file) {
      chomp $tmp_pattern_file;
      $tmp_pattern_file =~ s/\'//g;
      $tmp_pattern_file =~ s/\"//g;
      $command .= " -pl '".$tmp_pattern_file."'";
    }

    if ($subst) {
      $subst =~ s/\'//g;
      $subst =~ s/\"//g;
      $command .= " -subst '".$subst."'";
    }

    if ($id) {
      $id =~ s/\'//g;
      $id =~ s/\"//g;
      $command .= " -id '".$id."'";
    }

    if ($noov == 1) {
      $command .= " -noov";
    }

    if ($str  =~ /\d/) {
	if ($str == 1 || $str == 2) {
	    $command .= " -".$str."str";
	} else {
	    die "str value must be 1 or 2";
	}
    }

    if ($sort == 1) {
      $command .= " -sort";
    }

    if ($th) {
      $th =~ s/\'//g;
      $th =~ s/\"//g;
      $command .= " -th '".$th."'";
    }

    if ($origin) {
	$origin =~ s/\'//g;
	$origin =~ s/\"//g;
	$command .= " -origin '".$origin."'";
    }

    if ($score) {
	$score =~ s/\'//g;
	$score =~ s/\"//g;
	$command .= " -sc '".$score."'";
    }

    if ($return) {
        $return =~ s/\'//g;
        $return =~ s/\"//g;
        $command .= " -return '".$return."'";
    }

    $command .= " -i '".$tmp_infile."'";

    &run_WS_command($command, $output_choice, "dna-pattern", "tab");
}


################################################################
sub convert_features {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
      $output_choice = 'both';
    }
    if ($args{"input"}) {
	my $input = $args{"input"};
	chomp $input;
#	$tmp_infile = `mktemp $TMP/convert-features.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","convert-features", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $input;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }
    chomp $tmp_infile;

    my $from = $args{"from"};
    my $to = $args{"to"};

    my $coord = $args{"coord"};

    my $command = "$SCRIPTS/convert-features";

    if ($from) {
      $from =~ s/\'//g;
      $from =~ s/\"//g;
      $command .= " -from '".$from."'";
    }

    if ($to) {
      $to =~ s/\'//g;
      $to =~ s/\"//g;
      $command .= " -to '".$to."'";
    }

    if ($coord) {
      $coord =~ s/\'//g;
      $coord =~ s/\"//g;
      $command .= " -coord '".$coord."'";
    }

    $command .= " -i '".$tmp_infile."'";

     &run_WS_command($command, $output_choice, "convert-features", $to);
}


################################################################
sub feature_map {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

    my $extension;
    if ($args{'format'}) {
        $extension = $args{'format'};
    } else {
        $extension = "jpg";
    }

#    $tmp_outfile =~ s/\/home\/rsat\/rsa-tools\/public_html/http\:\/\/rsat\.bigre\.ulb\.ac\.be\/rsat/g;
#    $tmp_outfile =~ s/\/home\/rsat\/rsa-tools\/public_html/$ENV{rsat_www}/g;

    if ($args{"features"}) {
	my $features = $args{"features"};
	chomp $features;
#	$tmp_infile = `mktemp $TMP/feature-map.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","feature-map", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $features;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }
    chomp $tmp_infile;

    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_sequence_file = `mktemp $TMP/feature-map.XXXXXXXXXX`;
	$tmp_sequence_file = &RSAT::util::make_temp_file("","feature-map_seq", 1,0);
	open TMP_IN, ">".$tmp_sequence_file or die "cannot open temp file ".$tmp_sequence_file."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_sequence_file"}) {
	$tmp_sequence_file = $args{"tmp_sequence_file"};
    }
    chomp $tmp_sequence_file;

    my $format = $args{"format"};
    my $from = $args{"from"};
    my $to = $args{"to"};
    my $title = $args{"title"};
    my $label = $args{"label"};
    my $symbol = $args{"symbol"};
    my $dot = $args{"dot"};
    my $mlen = $args{"mlen"};
    my $mapthick = $args{"mapthick"};
    my $mspacing = $args{"mspacing"};
    my $origin = $args{"origin"};
    my $legend = $args{"legend"};
    my $scalebar = $args{"scalebar"};
    my $scalestep = $args{"scalestep"};
    my $scorethick = $args{"scorethick"};
    my $maxscore = $args{"maxscore"};
    my $minscore = $args{"minscore"};
    my $maxfthick = $args{"maxfthick"};
    my $minfthick = $args{"minfthick"};
    my $htmap = $args{"htmap"};
    my $mono = $args{"mono"};
    my $orientation = $args{"orientation"};
    my $select = $args{"select"};
    my $sequence_format = $args{'sequence_format'};

    my $command = "$SCRIPTS/feature-map";

    if ($format) {
      $format =~ s/\'//g;
      $format =~ s/\"//g;
      $command .= " -format '".$format."'";
    }

    if ($from =~ /\d/) {
      $from =~ s/\'//g;
      $from =~ s/\"//g;
      $command .= " -from '".$from."'";
    }

    if ($to =~ /\d/) {
      $to =~ s/\'//g;
      $to =~ s/\"//g;
      $command .= " -to '".$to."'";
    }

    if ($title) {
      $title =~ s/\'//g;
      $title =~ s/\"//g;
      $command .= " -title '".$title."'";
    }

    if ($label) {
      $label =~ s/\'//g;
      $label =~ s/\"//g;
      $command .= " -label '".$label."'";
    }

    if ($symbol == 1) {
      $command .= " -symbol";
    }

    if ($dot == 1) {
      $command .= " -dot";
    }

    if ($htmap == 1) {
      $command .= " -htmap";
    }

    if ($legend == 1) {
      $command .= " -legend";
    }

    if ($scalebar == 1) {
      $command .= " -scalebar";
    }

    if ($scorethick == 1) {
      $command .= " -scorethick";
    }

    if ($orientation) {
	if ($orientation eq "horiz" || $orientation eq "vertic") {
	    $command .= " -".$orientation;
	} else {
	    die "Orientation must be equal to either 'horiz' or 'vertic'";
	}
    }

    if ($mono == 1) {
      $command .= " -mono";
    }

    if ($mlen =~ /\d/) {
      $mlen =~ s/\'//g;
      $mlen =~ s/\"//g;
      $command .= " -mlen '".$mlen."'";
    }

    if ($mapthick =~ /\d/) {
      $mapthick =~ s/\'//g;
      $mapthick =~ s/\"//g;
      $command .= " -mapthick '".$mapthick."'";
    }

    if ($mspacing =~ /\d/) {
      $mspacing =~ s/\'//g;
      $mspacing =~ s/\"//g;
      $command .= " -mspacing '".$mspacing."'";
    }

    if ($origin =~ /\d/) {
      $origin =~ s/\'//g;
      $origin =~ s/\"//g;
      $command .= " -origin '".$origin."'";
    }

    if ($scalestep =~ /\d/) {
      $scalestep =~ s/\'//g;
      $scalestep =~ s/\"//g;
      $command .= " -scalestep '".$scalestep."'";
    }

    if ($maxscore =~ /\d/) {
      $maxscore =~ s/\'//g;
      $maxscore =~ s/\"//g;
      $command .= " -maxscore '".$maxscore."'";
    }

    if ($minscore =~ /\d/) {
      $minscore =~ s/\'//g;
      $minscore =~ s/\"//g;
      $command .= " -minscore '".$minscore."'";
    }

    if ($maxfthick =~ /\d/) {
      $maxfthick =~ s/\'//g;
      $maxfthick =~ s/\"//g;
      $command .= " -maxfthick '".$maxfthick."'";
    }

    if ($minfthick =~ /\d/) {
      $minfthick =~ s/\'//g;
      $minfthick =~ s/\"//g;
      $command .= " -minfthick '".$minfthick."'";
    }

    if ($select) {
	$select =~ s/\'//g;
	$select =~ s/\"//g;
	$command .= " -select '".$select."'";
    }

    if ($tmp_sequence_file) {
	$tmp_sequence_file =~ s/\'//g;
	$tmp_sequence_file =~ s/\"//g;
	$command .= " -seq '".$tmp_sequence_file."'";
    }

    if ($sequence_format) {
      $sequence_format =~ s/\'//g;
      $sequence_format =~ s/\"//g;
      $command .= " -seqformat '".$sequence_format."'";
    }

    $command .= " -i '".$tmp_infile."'";

    &run_WS_command($command, $output_choice, "feature_map", $extension);
}


################################################################
sub get_orthologs {
  my ($self, $args_ref) = @_;

  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

    my $command = $self->get_orthologs_cmd(%args);

  local(*HIS_IN, *HIS_OUT, *HIS_ERR);
  my $childpid = open3(*HIS_IN, *HIS_OUT, *HIS_ERR, $command);
  my @outlines = <HIS_OUT>;    # Read till EOF.
  my @errlines = <HIS_ERR>;    # XXX: block potential if massive

  my $result = join('', @outlines);
  my $stderr;

  foreach my $errline(@errlines) {
      ## Some errors and RSAT warnings are not considered as fatal errors
      unless (($errline =~ 'Use of uninitialized value') || ($errline =~'WARNING')) {
	  $stderr .= $errline;
      }
      ## RSAT warnings are added at the end of results
      if ($errline =~'WARNING') {
	  $result .= $errline;
      }
  }

  close HIS_OUT;
  close HIS_ERR;

#    if ($stderr) {
#        die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
#    }

#    my ($TMP_OUT, $tmp_outfile) = &File::Temp::tempfile(get_orthologs.XXXXXXXXXX, DIR => $TMP);
  my $tmp_outfile = &RSAT::util::make_temp_file("","get-orthologs", 1,0); 
  my $TMP_OUT = open ">".$tmp_outfile || die "Cannot open temporary file ".$tmp_outfile;
    print $TMP_OUT $result;
    close $TMP_OUT;

    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"get-orthologs",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
#         return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
#                                                'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
#         return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
#                                                'client' => $result});
#     } elsif ($output_choice eq 'both') {
#         return SOAP::Data->name('response' => {'server' => $tmp_outfile,
#                                                'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
#                                                'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub get_orthologs_cmd {
  my ($self, %args) =@_;

  ## List of queries
  my $query_ref = $args{"query"};
  my $query = "";
  if ($query_ref =~ /ARRAY/) {
    my @query = @{$query_ref};
    foreach $q (@query) {
	$q =~s/\'//g;
	$q =~s/\"//g;
    }
    $query = " -q '";
    $query .= join "' -q '", @query;
    $query .= "'";
  } elsif ($query_ref) {
    $query = " -q '";;
    $query .= $query_ref;
    $query .= "'";
}

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
	$lt =~s/\'//g;
	$lt =~s/\"//g;
	@_lt = split / /, $lt;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
	@_lt = split / /, $lth_ref;
        $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
	$ut =~s/\'//g;
	$ut =~s/\"//g;
	@_ut = split / /, $ut;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } elsif ($uth_ref) {
	@_ut = split / /, $uth_ref;
        $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
}

  my $command = "$SCRIPTS/get-orthologs";

  if ($args{organism}) {
      $args{organism} =~ s/\'//g;
      $args{organism} =~ s/\"//g;
      $command .= " -org '".$args{organism}."'";
  }
  if ($args{taxon}) {
      $args{taxon} =~ s/\'//g;
      $args{taxon} =~ s/\"//g;
      $command .= " -taxon '".$args{taxon}."'";
  }
  if ($query) {
    $command .= $query;
  }
  if ($args{all} == 1) {
    $command .= " -all";
  }
  if ($args{nogrep} == 1){
    $command .= " -nogrep";
  }
  if ($args{return}) {
      $args{return} =~ s/\'//g;
      $args{return} =~ s/\"//g;
      $command .= " -return '".$args{return}."'";
  }
    if ($lth) {
      $command .= $lth;
    }

    if ($uth) {
      $command .= $uth;
    }

  return $command;
}


################################################################
sub footprint_discovery {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->footprint_discovery_cmd(%args);

    local(*HIS_IN, *HIS_OUT, *HIS_ERR);
    my $childpid = open3(*HIS_IN, *HIS_OUT, *HIS_ERR, $command);
    my @outlines = <HIS_OUT>;    # Read till EOF.
    my @errlines = <HIS_ERR>;    # XXX: block potential if massive

    my $result = join('', @outlines);
    my $stderr;

    foreach my $errline(@errlines) {
	## Some errors and RSAT warnings are not considered as fatal errors
	unless (($errline =~ 'Use of uninitialized value') || ($errline =~'WARNING')) {
	    $stderr .= $errline;
	}
	## RSAT warnings are added at the end of results
	if ($errline =~'WARNING') {
	    $result .= $errline;
	}
    }
    $stderr = &error_handling($stderr, 1);
    close HIS_OUT;
    close HIS_ERR;

#    my $stderr = `$command 2>&1 1>/dev/null`;
    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }
#    my $result = `$command`;
#    my ($TMP_OUT, $tmp_outfile) = &File::Temp::tempfile(footprint_discovery.XXXXXXXXXX, DIR => $TMP);
  my $tmp_outfile = &RSAT::util::make_temp_file("","footprint-discovery", 1,0); 
  my $TMP_OUT = open ">".$tmp_outfile || die "Cannot open temporary file ".$tmp_outfile;
    print $TMP_OUT $result;
    close $TMP_OUT;
#    $tmp_outfile =~ s/\/home\/rsat\/rsa-tools\/public_html/http\:\/\/rsat\.bigre\.ulb\.ac\.be\/rsat/g;
#    $tmp_outfile =~ s/\/home\/rsat\/rsa-tools\/public_html/$ENV{rsat_www}/g;

    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"footprint-discovery",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub footprint_discovery_cmd {
    my ($self, %args) =@_;
    if ($args{"genes"}) {
	my $genes = $args{"genes"};
	chomp $genes;
#	$tmp_infile = `mktemp $TMP/footprint-discovery.XXXXXXXXXX`;
	$tmp_infile = &RSAT::util::make_temp_file("","footprint-discovery", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $genes;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
    }

    ## List of query genes
    my $query_ref = $args{"query"};
    my $query = "";
    if ($query_ref =~ /ARRAY/) {
	my @query = @{$query_ref};
	foreach $q (@query) {
	    $q =~s/\'//g;
	    $q =~s/\"//g;
	}
	$query = " -q '";
	$query .= join "' -q '", @query;
	$query .= "'";
    } elsif ($query_ref) {
      $query = " -q '";;
      $query .= $query_ref;
      $query .= "'";
    }

    my $verbosity = $args{"verbosity"};
    my $all_genes = $args{"all_genes"};
    my $max_genes = $args{"max_genes"};
    my $output_prefix = $args{"output_prefix"};
    my $sep_genes = $args{"sep_genes"};
    my $organism = $args{"organism"};
    my $taxon = $args{"taxon"};
    my $index = $args{"index"};
    my $stats = $args{"stats"};
    my $to_matrix = $args{"to_matrix"};
    my $bg_model = $args{"bg_model"};
    my $no_filter = $args{"no_filter"};
    my $infer_operons = $args{"infer_operons"};
    my $dist_thr = $args{"dist_thr"};

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
	$lt =~s/\'//g;
	$lt =~s/\"//g;
	@_lt = split / /, $lt;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
	@_lt = split / /, $lth_ref;
        $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
	$ut =~s/\'//g;
	$ut =~s/\"//g;
	@_ut = split / /, $ut;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } else {
	@_ut = split / /, $uth_ref;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }

    my $command = "$SCRIPTS/footprint-discovery";

    if ($verbosity) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
    }

    if ($all_genes == 1) {
      $command .= " -all_genes";
    }

    if ($max_genes =~ /\d/) {
      $max_genes =~ s/\'//g;
      $max_genes =~ s/\"//g;
      $command .= " -max_genes '".$max_genes."'";
    }

    if ($output_prefix) {
      $output_prefix =~ s/\'//g;
      $output_prefix =~ s/\"//g;
      $command .= " -o '../tmp/".$output_prefix."'";
  } else {
      $output_prefix = "footprints/".$taxon."/".$organism."/".$query."/".$bg_model;
      $command .= " -o '../tmp/".$output_prefix."'";
  }

    if ($query) {
	$command .= $query;
    }

    if ($sep_genes == 1) {
      $command .= " -sep_genes";
    }

    if ($organism) {
      $organism =~ s/\'//g;
      $organism =~ s/\"//g;
      $command .= " -org '".$organism."'";
    }

    if ($taxon) {
      $taxon =~ s/\'//g;
      $taxon =~ s/\"//g;
      $command .= " -taxon '".$taxon."'";
    }

    if ($index == 1) {
      $command .= " -index";
    }

    if ($lth) {
      $command .= $lth;
    }

    if ($uth) {
      $command .= $uth;
    }

    if ($stats) {
      $stats =~ s/\'//g;
      $stats =~ s/\"//g;
      $command .= " -return '".$stats."'";
    }

    if ($to_matrix == 1) {
      $command .= " -to_matrix";
    }

    if ($bg_model) {
	if ($bg_model eq "taxfreq" || $bg_model eq "monads") {
	    $command .= " -bg_model ".$bg_model;
	} else {
	    die "Orientation must be equal to either 'taxfreq' or 'monad'";
	}
    }

    if ($no_filter == 1) {
      $command .= " -no_filter";
    }

    if ($infer_operons == 1) {
      $command .= " -infer_operons";
    }

    if ($dist_thr =~ /\d/) {
      $dist_thr =~ s/\'//g;
      $dist_thr =~ s/\"//g;
      $command .= " -dist_thr '".$dist_thr."'";
    }

    if ($tmp_infile) {
	chomp $tmp_infile;
	$command .= " -i '".$tmp_infile."'";
    }

    return $command;
}


################################################################
## infer-operon
sub infer_operon {
  my ($self, $args_ref) = @_;

  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  ## List of queries
  my $query_ref = $args{"query"};
  my $query = "";
  if ($query_ref =~ /ARRAY/) {
    my @query = @{$query_ref};
    foreach $q (@query) {
      $q =~s/\'//g;
      $q =~s/\"//g;
    }
    $query = " -q '";
    $query .= join "' -q '", @query;
    $query .= "'";
  } elsif ($query_ref) {
    $query = " -q '";;
    $query .= $query_ref;
    $query .= "'";
  }

#   open TMP_IN, ">/tmp/err.txt";
#   print TMP_IN join("\t", "HELLO", join(" ", %args)), "\n";
#   close TMP_IN;

  my $command = "$SCRIPTS/infer-operon";

  ## Verbosity
  if ($args{verbosity}) {
    $args{verbosity} =~ s/\'//g;
    $args{verbosity} =~ s/\"//g;
    $command .= " -v '".$args{verbosity}."'";
  }

  ## Organism (mandatory)
  if ($args{organism}) {
    $args{organism} =~ s/\'//g;
    $args{organism} =~ s/\"//g;
    $command .= " -org '".$args{organism}."'";
  }

  ## Query
  if ($query) {
    $command .= $query;
  }

  ## Return all operons
  if ($args{all} == 1) {
    $command .= " -all";
  }

  ## Threshold on distance
  if ($args{distance} =~ /\d/) {
    $args{distance} =~ s/\'//g;
    $args{distance} =~ s/\"//g;
    $command .= " -dist '".$args{distance}."'";
  }

  ## Threshold on number of genes in the operon
  if ($args{min_gene_nb} =~ /\d/) {
    $args{min_gene_nb} =~ s/\'//g;
    $args{min_gene_nb} =~ s/\"//g;
    $command .= " -min_gene_nb '".$args{min_gene_nb}."'";
  }

  ## Return fields
  if ($args{return}) {
    $args{return} =~ s/\'//g;
    $args{return} =~ s/\"//g;
    $command .= " -return '".$args{return}."'";
  }

  ## Temporary file contianing the queries
  if ($args{"tmp_infile"}) {
    $tmp_infile = $args{"tmp_infile"};
    $tmp_infile =~ s/\'//g;
    $tmp_infile =~ s/\"//g;
    chomp $tmp_infile;
    $command .= " -i '".$tmp_infile."'";
  }

  &run_WS_command($command, $output_choice, "infer-operon", "tab");
}


################################################################
sub gene_info {
    my ($self, $args_ref) = @_;

    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

  ## List of queries
  my $query_ref = $args{"query"};
  my $query = "";
  if ($query_ref =~ /ARRAY/) {
    my @query = @{$query_ref};
    foreach $q (@query) {
	$q =~s/\'//g;
	$q =~s/\"//g;
    }
    $query = " -q '";
    $query .= join "' -q '", @query;
    $query .= "'";
  } elsif ($query_ref) {
    $query = " -q '";;
    $query .= $query_ref;
    $query .= "'";
  }

  my $command = "$SCRIPTS/gene-info";

  if ($args{organism}) {
      $args{organism} =~ s/\'//g;
      $args{organism} =~ s/\"//g;
      $command .= " -org '".$args{organism}."'";
  }
  if ($query) {
    $command .= $query;
  }
  if ($args{full} == 1) {
    $command .= " -full";
  }
  if ($args{noquery} == 1){
    $command .= " -noquery";
  }
  if ($args{descr} == 1) {
    $command .= " -descr";
  }
  if ($args{feattype}) {
      $args{feattype} =~ s/\'//g;
      $args{feattype} =~ s/\"//g;
      $command .= " -feattype '".$args{feattype}."'";
  }
if ($args{all_genes} == 1) {
    $command .= " -all_genes";
  }

    &run_WS_command($command, $output_choice, "gene-info", "tab");
}


################################################################
sub supported_organisms {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = $SCRIPTS."/supported-organisms";

  ## Output format
  unless ($args{format}) {
    $args{format} = "tab";
  }
  if ($args{format}) {
    $args{format} =~ s/\'//g;
    $args{format} =~ s/\"//g;
    $command .= " -format ".$args{format};
  }

  ## Output fields
  if ($args{return}) {
    $args{return} =~ s/\'//g;
    $args{return} =~ s/\"//g;
    $command .= " -return '".$args{return}."'";
  }

  ## Depth
  if ($args{depth}) {
    &RSAT::error::FatalError() unless (&RSAT::util::IsInteger($args{depth}));
    $command .= " -depth ".$args{depth};
  }

  ## Taxon
  if ($args{taxon}) {
    $args{taxon} =~ s/\'//g;
    $args{taxon} =~ s/\"//g;
    $command .= " -taxon '".$args{taxon}."'";
  }

  ## Source
  if ($args{source}) {
    $args{source} =~ s/\'//g;
    $args{source} =~ s/\"//g;
    $command .= " -source '".$args{source}."'";
  }

  &run_WS_command($command, $output_choice, "supported-organisms", "tab");
}


################################################################
sub supported_motif_databases {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = $SCRIPTS."/supported-motif-databases";

  ## Output fields
  if ($args{return}) {
    $args{return} =~ s/\'//g;
    $args{return} =~ s/\"//g;
    $command .= " -return '".$args{return}."'";
  }

  &run_WS_command($command, $output_choice, "supported-motif-databases", "tab");
}


################################################################
sub text_to_html {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
  my $command = $SCRIPTS."/text-to-html -v 0";
  if ($args{inputfile}) {
   my $input_file = $args{inputfile};
   chomp $input_file;
#   my $tmp_input = `mktemp $TMP/text-to-html-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","text-to-html-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open input temp file ".$tmp_input."\n";
   print TMP_IN $input_file;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{chunk}) {
      $args{chunk} =~ s/\'//g;
      $args{chunk} =~ s/\"//g;
      $command .= " -chunk '".$args{chunk}."'";
  }
  if ($args{font}) {
      $args{font} =~ s/\'//g;
      $args{font} =~ s/\"//g;
      $command .= " -font '".$args{font}."'";
  }
  if ($args{no_sort}) {
      $command .= " -no_sort";
  }

  &run_WS_command($command, $output_choice, "text-to-html", "html");
}


################################################################
sub roc_stats {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

  my $command = "$SCRIPTS/roc-stats2";

  if ($args{inputfile}) {
   my $input_file = $args{inputfile};
   chomp $input_file;
#   my $tmp_input = `mktemp $TMP/roc-stats-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","roc-stats-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_file;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{scol}) {
      $args{scol} =~ s/\'//g;
      $args{scol} =~ s/\"//g;
      $command .= " -scol '".$args{scol}."'";
  }
  if ($args{lcol}) {
      $args{lcol} =~ s/\'//g;
      $args{lcol} =~ s/\"//g;
      $command .= " -lcol '".$args{lcol}."'";
  }
  if ($args{status}) {
      $args{status} =~ s/\'//g;
      $args{status} =~ s/\"//g;
      $status = $args{status};
      my @statuscp = split (/ /, $status);
      if (scalar(@statuscp) % 2 ==0) {
        for (my $i = 0; $i < scalar(@statuscp)-1; $i+=2) {
          $command .= " -status '".$statuscp[$i]." ".$statuscp[$i+1]."'";
        }
      }
  }
  if ($args{total}) {
      $command .= " -total";
  }
  &run_WS_command($command, $output_choice, "roc-stats", "tab");
}


################################################################
sub classfreq {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

  my $command = "$SCRIPTS/classfreq -v 1";

  if ($args{col}) {
   my $col = $args{col};
   $col =~ s/\'//g;
   $col =~ s/\'//g;
   $command .= " -col $col";
  }
  if ($args{from}) {
   my $from = $args{from};
   $from =~ s/\'//g;
   $from =~ s/\'//g;
   $command .= " -from $from";
  }
  if ($args{to}) {
   my $to = $args{to};
   $to =~ s/\'//g;
   $to =~ s/\'//g;
   $command .= " -to $to";
  }
  if ($args{min}) {
   my $min = $args{min};
   $min =~ s/\'//g;
   $min =~ s/\'//g;
   $command .= " -min $min";
  }
  if ($args{max}) {
   my $max = $args{max};
   $max =~ s/\'//g;
   $max =~ s/\'//g;
   $command .= " -to $max";
  }
  if ($args{classinterval}) {
   my $ci = $args{classinterval};
   $ci =~ s/\'//g;
   $ci =~ s/\'//g;
   $command .= " -ci $ci";
  }
  if ($args{inputFile}) {
   my $input_file = $args{inputFile};
   chomp $input_file;
#   my $tmp_input = `mktemp $TMP/classfreq-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","classfreq-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_file;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  &run_WS_command($command, $output_choice, "classfreq", "tab");
}


################################################################
sub convert_classes {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

  my $command = "$SCRIPTS/convert-classes";
  my $extension = undef;

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\"//g;
   $command .= " -from $in_format";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -to $out_format";
   if ($out_format eq 'profiles') {
     $extension = "tab"
   } else {
     $extension = $out_format;
   }

  }
  if ($args{member_col}) {
   my $member_col = $args{member_col};
   $member_col =~ s/\'//g;
   $member_col =~ s/\'//g;
   $command .= " -mcol $member_col";
  }
  if ($args{class_col}) {
   my $class_col = $args{class_col};
   $class_col =~ s/\'//g;
   $class_col =~ s/\'//g;
   $command .= " -ccol $class_col";
  }
  if ($args{score_col}) {
   my $score_col = $args{score_col};
   $score_col =~ s/\'//g;
   $score_col =~ s/\'//g;
   $command .= " -scol $score_col";
  }
  if ($args{min_score}) {
   my $score_col = $args{min_score};
   $min_score =~ s/\'//g;
   $min_score =~ s/\'//g;
   $command .= " -min_score $score_col";
  }
  if ($args{inputclasses}) {
   my $inputclasses = $args{inputclasses};
   chomp $inputclasses;
#   my $tmp_input = `mktemp $TMP/convert-classes-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","convert-classes-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $inputclasses;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{names}) {
   my $inputclasses_names = $args{names};
   chomp $inputclasses_names;
#   my $tmp_input = `mktemp $TMP/convert-classes-input-names.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","convert-classes-input-names", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $inputclasses_names;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -names '".$tmp_input."'";
  }
  &run_WS_command($command, $output_choice, "convert-classes", $extension);
}


################################################################
sub contingency_stats {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

  my $command = "$SCRIPTS/contingency-stats -v 1";

  if ($args{return}) {
   my $return = $args{return};
   $return =~ s/\'//g;
   $return =~ s/\'//g;
   $command .= " -return $return";
  }
  if ($args{decimals}) {
   my $decimals = $args{decimals};
   $decimals =~ s/\'//g;
   $decimals =~ s/\'//g;
   $command .= " -decimals $decimals";
  }
  if ($args{inputfile}) {
   my $inputfile = $args{inputfile};
   chomp $inputfile;
#   my $tmp_input = `mktemp $TMP/contingency-stats-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","contingency-stats-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $inputfile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{rsizes}) {
   my $inputfile = $args{rsizes};
   chomp $inputfile;
#   my $tmp_input = `mktemp $TMP/contingency-stats-rsizes.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","contingency-stats-rsizes", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $inputfile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -rsizes '".$tmp_input."'";
  }
  if ($args{csizes}) {
   my $inputfile = $args{csizes};
   chomp $inputfile;
#   my $tmp_input = `mktemp $TMP/contingency-stats-csizes.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","contingency-stats-csizes", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $inputfile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -csizes '".$tmp_input."'";
  }
  &run_WS_command($command, $output_choice, "contingency-stats", "tab");
}


################################################################
sub contingency_table {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

  my $command = "$SCRIPTS/contingency-table ";

  if ($args{null}) {
   my $null = $args{null};
   $null =~ s/\'//g;
   $null =~ s/\'//g;
   $command .= " -null $null";
  }
  if ($args{margin}) {
   $command .= " -margin";
  }
  if ($args{col1}) {
   my $col1 = $args{col1};
   $col1 =~ s/\'//g;
   $col1 =~ s/\'//g;
   $command .= " -col1 $col1";
  }
  if ($args{col2}) {
   my $col2 = $args{col2};
   $col2 =~ s/\'//g;
   $col2 =~ s/\'//g;
   $command .= " -col2 $col2";
  }
  if ($args{inputfile}) {
   my $inputfile = $args{inputfile};
   chomp $inputfile;
#   my $tmp_input = `mktemp $TMP/contingency-table-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","contingency-table-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $inputfile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }

#  open FILE, ">/home/rsat/rsa-tools/public_html/tmp/brol.truc3"; ## commented by JvH on 2013-08-09. PLease dont modify without noticing to JvH.
  &run_WS_command($command, $output_choice, "contingency-table", "tab");
}


################################################################
sub xygraph {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;

    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->xygraph_cmd(%args);
    ## IMAGE OUTPUT FORMAT RECUPERATION
    my $out_format = $args{format};
    $out_format =~ s/\'//g;
    $out_format =~ s/\'//g;
#    my $tmp_outfile = `mktemp $TMP/xygraph.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","XYgraph", 1,0);
    chomp $tmp_outfile;
    system("rm $tmp_outfile");
    $tmp_outfile .= ".$out_format";
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    close TMP_OUT;
    $command .= " -o $tmp_outfile";
    system $command;
    my $result = `cat $tmp_outfile`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    $stderr = &error_handling($stderr, 1);
    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }
    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"xy-graph",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub xygraph_cmd {
  my ($self, %args) =@_;

  my $command = "$SCRIPTS/XYgraph";

  if ($args{format}) {
   my $format = $args{format};
   $format =~ s/\'//g;
   $format =~ s/\'//g;
   $command .= " -format $format";
  }
  if ($args{title1}) {
   my $title1 = $args{title1};
   $title1 =~ s/\'//g;
   $title1 =~ s/\'//g;
   $command .= " -title1 '$title1'";
  }
  if ($args{lines}) {
   my $lines = $args{lines};
   $command .= " -lines";
  }
  if ($args{legend}) {
   my $legend = $args{legend};
   $command .= " -legend";
  }
  if ($args{header}) {
   my $header = $args{header};
   $command .= " -header";
  }
  if ($args{title2}) {
   my $title2 = $args{title2};
   $title2 =~ s/\'//g;
   $title2 =~ s/\'//g;
   $command .= " -title2 '$title2'";
  }
  if ($args{xleg1}) {
   my $xleg1 = $args{xleg1};
   $xleg1 =~ s/\'//g;
   $xleg1 =~ s/\'//g;
   $command .= " -xleg1 '$xleg1'";
  }
  if ($args{xleg2}) {
   my $xleg2 = $args{xleg2};
   $xleg2 =~ s/\'//g;
   $xleg2 =~ s/\'//g;
   $command .= " -xleg2 '$xleg2'";
  }
  if ($args{yleg1}) {
   my $yleg1 = $args{yleg1};
   $yleg1 =~ s/\'//g;
   $yleg1 =~ s/\'//g;
   $command .= " -yleg1 '$yleg1'";
  }
  if ($args{yleg2}) {
   my $yleg2 = $args{yleg2};
   $yleg2 =~ s/\'//g;
   $yleg2 =~ s/\'//g;
   $command .= " -yleg2 '$yleg2'";
  }
  if ($args{xmax} ne "") {
   my $xmax = $args{xmax};
   $xmax =~ s/\'//g;
   $xmax =~ s/\'//g;
   $command .= " -xmax $xmax";
  }
  if ($args{ymax} ne "") {
   my $ymax = $args{ymax};
   $ymax =~ s/\'//g;
   $ymax =~ s/\'//g;
   $command .= " -ymax $ymax";
  }
  if ($args{xmin} ne "") {
   my $xmin = $args{xmin};
   $xmin =~ s/\'//g;
   $xmin =~ s/\'//g;
   $command .= " -xmin $xmin";
  }
  if ($args{ymin} ne "") {
   my $ymin = $args{ymin};
   $ymin =~ s/\'//g;
   $ymin =~ s/\'//g;
   $command .= " -ymin $ymin";
  }
  if ($args{xlog} ne "") {
   my $xlog = $args{xlog};
   $xlog =~ s/\'//g;
   $xlog =~ s/\'//g;
   $command .= " -xlog $xlog";
  }
  if ($args{ylog} ne "") {
   my $ylog = $args{ylog};
   $ylog =~ s/\'//g;
   $ylog =~ s/\'//g;
   $command .= " -ylog $ylog";
  }
  if ($args{xcol} ne "") {
   my $xcol = $args{xcol};
   $xcol =~ s/\'//g;
   $xcol =~ s/\'//g;
   $command .= " -xcol $xcol";
  }
  if ($args{ycol}) {
   my $ycol = $args{ycol};
   $ycol =~ s/\'//g;
   $ycol =~ s/\'//g;
   $command .= " -ycol $ycol";
  }
  if ($args{inputFile}) {
   my $input_file = $args{inputFile};
   chomp $input_file;
#   my $tmp_input = `mktemp $TMP/xygraph-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","XYgraph-input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_file;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  return $command;
}


################################################################
sub convert_seq {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

    if ($args{"sequence"}) {
	my $sequence = $args{"sequence"};
	chomp $sequence;
#	$tmp_infile = `mktemp $TMP/convert-seq.XXXXXXXXXX`;
	$tmp_input = &RSAT::util::make_temp_file("","convert-seq", 1,0);
	open TMP_IN, ">".$tmp_infile or die "cannot open temp file ".$tmp_infile."\n";
	print TMP_IN $sequence;
	close TMP_IN;
    } elsif ($args{"tmp_infile"}) {
	$tmp_infile = $args{"tmp_infile"};
	$tmp_infile =~ s/\'//g;
	$tmp_infile =~ s/\"//g;
    }
    chomp $tmp_infile;
    my $command = "$SCRIPTS/convert-seq";

    if ($args{from}) {
	$args{from} =~ s/\'//g;
	$args{from} =~ s/\"//g;
	$command .= " -from '".$args{from}."'";
    }
    if ($args{to}) {
	$args{to} =~ s/\'//g;
	$args{to} =~ s/\"//g;
	$command .= " -to '".$args{to}."'";
    }

    $command .= " -i '".$tmp_infile."'";

    &run_WS_command($command, $output_choice, "convert-seq", $args{to});
}


################################################################
sub compare_classes {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  ## Creation of a temporary file which will be integrated in the command
  if ($args{"ref_classes"}) {
    my $reference = $args{"ref_classes"};
    chomp $reference;
#    $tmp_ref = `mktemp $TMP/compare-ref-classes.XXXXXXXXXX`;
    $tmp_ref = &RSAT::util::make_temp_file("","compare-classes-ref", 1,0);
    open TMP_IN, ">".$tmp_ref or die "cannot open temp file ".$tmp_ref."\n";
    print TMP_IN $reference;
    close TMP_IN;
  }


  ## idem for query classes
  if ($args{"query_classes"}) {
    my $query = $args{"query_classes"};
    chomp $query;
#    $tmp_query = `mktemp $TMP/compare-query-classes.XXXXXXXXXX`;
    $tmp_query = &RSAT::util::make_temp_file("","compare-classes-query", 1,0);
    open TMP_IN, ">".$tmp_query or die "cannot open temp file ".$tmp_query."\n";
    print TMP_IN $query;
    close TMP_IN;
  }


  ## Idem for input classes
  if ($args{"input_classes"}) {
    my $input = $args{"input_classes"};
    chomp $input;
#    $tmp_input = `mktemp $TMP/compare-input-classes.XXXXXXXXXX`;
    $tmp_input = &RSAT::util::make_temp_file("","compare-classes-input", 1,0);
    open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
    print TMP_IN $input;
    close TMP_IN;
  }

  # my $ref_classes = $args{"ref_classes"};
  # my $query_classes = $args{"query_classes"};
  my $return_fields = $args{"return_fields"};
  my $score_column = $args{"score_column"};
  my $upper_threshold_field_list = $args{"upper_threshold_field"};
  my $upper_threshold_value_list = $args{"upper_threshold_value"};
  my $lower_threshold_field_list = $args{"lower_threshold_field"};
  my $lower_threshold_value_list = $args{"lower_threshold_value"};
  my $population = $args{"population"};
  my $sort = $args{"sort"};
  my $distinct = $args{"distinct"};
  my $triangle = $args{"triangle"};
  my $matrix = $args{"matrix"};
  my $multi_correction = $args{"multi_correction"};

  my $command = "$SCRIPTS/compare-classes -v 1";

  #pas d'utilite directe de "nettoyage" de la commande sauf si l'on rajoute un elsif...
  if ($tmp_ref) {
    $tmp_ref =~ s/\'//g;
    $tmp_ref =~ s/\"//g;
    chomp $tmp_ref;
    $command .= " -r '".$tmp_ref."'";
  }

  if ($tmp_query) {
    $tmp_query =~ s/\'//g;
    $tmp_query =~ s/\"//g;
    chomp $tmp_query;
    $command .= " -q '".$tmp_query."'";
  }

  if ($tmp_input) {
    $tmp_input =~ s/\'//g;
    $tmp_input =~ s/\"//g;
    chomp $tmp_input;
    $command .= " -i '".$tmp_input."'";
  }

  if ($return_fields) {
    $return_fields =~ s/\'//g;
    $return_fields =~ s/\"//g;
    $command .= " -return '".$return_fields."'";
  }

  if ($score_column) {
    $score_column =~ s/\'//g;
    $score_column =~ s/\"//g;
    $command .= " -sc '".$score_column."'";
  }

  if ($upper_threshold_field_list ne "" && $upper_threshold_value_list ne "")  {

    my @upper_threshold_field_cp = split(":", $upper_threshold_field_list);
    my @upper_threshold_value_cp = split(",", $upper_threshold_value_list);
    if (scalar(@upper_threshold_field_cp) == scalar(@upper_threshold_value_cp)) {
      for (my $i = 0; $i < scalar(@upper_threshold_field_cp); $i++) {
        my $upper_threshold_field = $upper_threshold_field_cp[$i];
        my $upper_threshold_value = $upper_threshold_value_cp[$i];
        $upper_threshold_field =~ s/\'//g;
        $upper_threshold_field =~ s/\"//g;
        $upper_threshold_value =~ s/\'//g;
        $upper_threshold_value =~ s/\"//g;
        $command .= " -uth '".$upper_threshold_field."' '".$upper_threshold_value."'";
      }
    }
  }

  if ($lower_threshold_field_list ne "" && $lower_threshold_value_list ne "")  {
    my @lower_threshold_field_cp = split(":", $lower_threshold_field_list);
    my @lower_threshold_value_cp = split(",", $lower_threshold_value_list);
    if (scalar(@lower_threshold_field_cp) == scalar(@lower_threshold_value_cp)) {
      for (my $i = 0; $i < scalar(@lower_threshold_field_cp); $i++) {
        my $lower_threshold_field = $lower_threshold_field_cp[$i];
        my $lower_threshold_value = $lower_threshold_value_cp[$i];
        $lower_threshold_field =~ s/\'//g;
        $lower_threshold_field =~ s/\"//g;
        $lower_threshold_value =~ s/\'//g;
        $lower_threshold_value =~ s/\"//g;
        $command .= " -lth '".$lower_threshold_field."' '".$lower_threshold_value."'";
      }
    }
  }

  if ($population =~ /\d/) {
    $population =~ s/\'//g;
    $population =~ s/\"//g;
    $command .= " -pop '".$population."'";
  }

  if ($sort) {
    $sort =~ s/\'//g;
    $sort =~ s/\"//g;
    $command .= " -sort '".$sort."'";
  }

  if ($distinct == 1) {
    $command .= " -distinct";
  }

  if ($triangle == 1) {
    $command .= " -triangle";
  }

  if ($matrix) {
    $matrix =~ s/\'//g;
    $matrix =~ s/\"//g;
    $command .= " -matrix '".$matrix."'";
  }

  if ($multi_correction) {
    $multi_correction =~ s/\'//g;
    $multi_correction =~ s/\"//g;
    $command .= " -multi_cor '".$multi_correction."'";
  }

 &run_WS_command($command, $output_choice, "compare-classes", "tab");
}


################################################################
sub matrix_scan {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
#   my $command = $self->matrix_scan_cmd(%args);
#   my $stderr = `$command 2>&1 1>/dev/null`;  ####cette gestion des erreurs est incompatible avec le fonctionnement de matrix-scan dans RSAT #######
#   if ($stderr) {
#     die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
#   }
#   my $result = `$command`;
#   # my $tmp_outfile = `mktemp $TMP/matrix-scan.XXXXXXXXXX`;
#   my $tmp_outfile = &RSAT::util::make_temp_file("","matrix-scan", 1,0);
#   open TMP, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
#   print TMP $result;
#   close TMP;
#   if ($output_choice eq 'server') {
#     return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					   'server' => $tmp_outfile});
#   } elsif ($output_choice eq 'client') {
#     return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					   'client' => $result});
#   } elsif ($output_choice eq 'both') {
#     return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					   'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					   'client' => $result});
#   }
# }

# sub matrix_scan_cmd {
#   my ($self,%args) = @_;

  ## Creation of a temporary file
  if ($args{"sequence"}) {
    my $sequence = $args{"sequence"};
    chomp $sequence;
#    $tmp_sequence_infile = `mktemp $TMP/matscan-sequence.XXXXXXXXXX`;
    $tmp_sequence_infile = &RSAT::util::make_temp_file("","matrix-scan-sequence", 1,0);
    open TMP_IN, ">".$tmp_sequence_infile or die "cannot open temp file ".$tmp_sequence_infile."\n";
    print TMP_IN $sequence;
    close TMP_IN;
  } elsif ($args{tmp_sequence_infile}){
      $tmp_sequence_infile = $args{"tmp_sequence_infile"};
  }
  chomp $tmp_sequence_infile;

  #idem
  if ($args{"matrix"}) {
      my $input_matrix = $args{"matrix"};
      chomp $input_matrix;
#      $tmp_matrix_infile = `mktemp $TMP/matscan-matrix.XXXXXXXXXX`;
      $tmp_matrix_infile = &RSAT::util::make_temp_file("","matrix-scan-matrix", 1,0);
      open TMP_IN, ">".$tmp_matrix_infile or die "cannot open temp file ".$tmp_matrix_infile."\n";
      print TMP_IN $input_matrix;
      close TMP_IN;
  } elsif ($args{tmp_matrix_infile}){
      $tmp_matrix_infile = $args{"tmp_matrix_infile"};
  }
  chomp $tmp_matrix_infile;
  
#  if ($args{"matrix_list"}) {
#      my $input_list = $args{"matrix_list"};
#      chomp $input_list;
#     # $tmp_input_list = `mktemp $TMP/matscan-matrix_list.XXXXXXXXXX`;
#       $tmp_input_list = &RSAT::util::make_temp_file("","matrix-scan_matrix-list", 1,0);
#      open TMP_IN, ">".$tmp_input_list or die "cannot open temp file ".$tmp_input_list."\n";
#      print TMP_IN $input_list;
#      close TMP_IN;
#  }

  my $sequence_format = $args{"sequence_format"}; 
  my $matrix_format = $args{"matrix_format"}; 
  my $top_matrices = $args{"top_matrices"};
  my $background_input = $args{"background_input"};
  my $background_window = $args{"background_window"};
  my $markov = $args{"markov"};
  my $background_pseudo = $args{"background_pseudo"};
  my $return_fields = $args{"return_fields"};
  my $str = $args{"str"};
  my $verbosity = $args{"verbosity"};
  my $origin = $args{"origin"};
  my $decimals = $args{"decimals"};
  my $crer_ids = $args{"crer_ids"};
  my $sort_distrib = $args{"sort_distrib"};

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
	$lt =~s/\'//g;
	$lt =~s/\"//g;
	@_lt = split / /, $lt;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
	@_lt = split / /, $lth_ref;
	$lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
	$ut =~s/\'//g;
	$ut =~s/\"//g;
	@_ut = split / /, $ut;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } elsif ($uth_ref) {
	@_ut = split / /, $uth_ref;
	$uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }

  my $command = "$SCRIPTS/matrix-scan";

  if ($tmp_sequence_infile) {
      $tmp_sequence_infile =~ s/\'//g;
      $tmp_sequence_infile =~ s/\"//g;
      chomp $tmp_sequence_infile;
      $command .= " -i '".$tmp_sequence_infile."'";
  }

  if ($tmp_matrix_infile) {
      $tmp_matrix_infile =~ s/\'//g;
      $tmp_matrix_infile =~ s/\"//g;
      chomp $tmp_matrix_infile;
      $command .= " -m '".$tmp_matrix_infile."'";
  }

  if ($sequence_format) {
      $sequence_format =~ s/\'//g;
      $sequence_format=~ s/\"//g;
      chomp $sequence_format;
      $command .= " -seq_format '".$sequence_format."'";
  }

  if ($matrix_format) {
      $matrix_format =~ s/\'//g;
      $matrix_format=~ s/\"//g;
      chomp $matrix_format;
      $command .= " -matrix_format '".$matrix_format."'";
  }

if ($args{"quick"} == 1) {
      $command .= " -quick";
  }

  if ($args{"n_treatment"} eq "score" || $args{"n_treatment"} eq "skip") {
      $command .= " -n ".$args{"n_treatment"};
  } else {
      die "n_treatment value must be score or skip";
  }

  if ($args{"consensus_name"} == 1 ) {
      $command .= " -consensus_name";
  }

  if ($args{"pseudo"} =~ /\d/) {
      $args{"pseudo"}  =~ s/\'//g;
      $args{"pseudo"} =~ s/\"//g;
      $command .= " -pseudo '".$args{"pseudo"}."'";
  }

if ($args{"equi_pseudo"} == 1 ) {
      $command .= " -equi_pseudo";
  }

#  if ($tmp_input_list) {
#      $tmp_input_list =~ s/\'//g;
#      $tmp_input_list =~ s/\"//g;
#      $command .= " -mlist '".$tmp_input_list."'";
# }

  if ($top_matrices ) {
      $top_matrices  =~ s/\'//g;
      $top_matrices  =~ s/\"//g;
      $command .= " -top_matrices '".$top_matrices."'";
  }

  if ($args{"background_model"}) {
      my $background = $args{"background_model"};
      chomp $background;
#      $tmp_background_infile = `mktemp $TMP/matscan-background.XXXXXXXXXX`;
      $tmp_background_infile = &RSAT::util::make_temp_file("","matrix-scan_bg", 1,0);
      open TMP_IN, ">".$tmp_background_infile or die "cannot open temp file ".$tmp_background_infile ."\n";
      print TMP_IN $background;
      close TMP_IN; 
  } elsif ($args{"tmp_background_infile"}) {
      $tmp_background_infile = $args{"tmp_background_infile"};
  } elsif ($args{"background"} && ($args{"markov"} =~ /\d/)){
      $oligo_length = $args{"markov"} + 1;
      if ($args{"organism"}) {

## JvH (2014-03-03): I should enable &ExpectedFreqFile() from within RSATWS,
## it is cleaner than defining a hard path towards the expected frequency
## file.
#	  $tmp_background_infile = "/home/rsat/rsa-tools/data/genomes/".$args{"organism"}."/oligo-frequencies/".$oligo_length."nt_".$args{"background"}."_".$args{"organism"}."-ovlp-1str.freq.gz";
#	  $tmp_background_infile = $ENV{RSAT}."/data/genomes/".$args{"organism"}."/oligo-frequencies/".$oligo_length."nt_".$args{"background"}."_".$args{"organism"}."-ovlp-1str.freq.gz";
	  $tmp_background_infile = &RSAT::OrganismManager::ExpectedFreqFile($args{"organism"}, $oligo_length, $args{"background"},
			    str=>'-1str',noov=>'-ovlp',type=>'oligo', warn=>0, taxon=>0);

## Only noov taxon bckgds available at the moment => useless
#      } elsif ($args{"taxon"}) {
#	  $tmp_background_infile = &ExpectedFreqFile($args{"taxon"}, $oligo_length, $args{"background"},
#					       str=>'-1str',noov=>'-ovlp',type=>'oligo', warn=>0, taxon=>1);
#	  $tmp_background_infile = ;
      } else {
	  die "You must provide either an organism or a taxon name";
      }
  }

  if ($tmp_background_infile) {
      $tmp_background_infile  =~ s/\'//g;
      $tmp_background_infile  =~ s/\"//g;
      chomp $tmp_background_infile;
      $command .= " -bgfile '".$tmp_background_infile."'";
  }

 if ($background_input == 1 ) {
      $command .= " -bginput";
  }

  if ($background_window) {
      $background_window  =~ s/\'//g;
      $background_window=~ s/\"//g;
      $command .= " -window '".$background_window."'";
  }

  if (($markov =~ /\d/) && !$args{"background"}) {
      $markov  =~ s/\'//g;
      $markov =~ s/\"//g;
      $command .= " -markov '".$markov."'";
  }

  if ($background_pseudo) {
      $background_pseudo =~ s/\'//g;
      $background_pseudo =~ s/\"//g;
      $command .= " -bg_pseudo '".$background_pseudo."'";
  }

  if ($return_fields) {
      $return_fields =~ s/\'//g;
      $return_fields =~ s/\"//g;
      $command .= " -return '".$return_fields."'";
  }

  if ($args{"sort_distrib"} == 1 ) {
      $command .= " -sort_distrib";
  }

  if ($lth) {
    $command .= $lth;
  }

  if ($uth) {
    $command .= $uth;
  }

  if ($str =~ /\d/) {
      if ($str == 1 || $str == 2) {
	  $command .= " -".$str."str";
      } else {
	  die "str value must be 1 or 2";
      }
  }

  if ($verbosity =~ /\d/) {
      $verbosity =~ s/\'//g;
      $verbosity =~ s/\"//g;
      $command .= " -v '".$verbosity."'";
  }

  if ($origin =~ /\d/) {
      $origin =~ s/\'//g;
      $origin =~ s/\"//g;
      $command .= " -origin '".$origin."'";
  }

  if ($decimals =~ /\d/) {
      $decimals =~ s/\'//g;
      $decimals =~ s/\"//g;
      $command .= " -decimals '".$decimals."'";
  }

  if ($crer_ids == 1) {
      $command .= " -crer_ids";
  }

 &run_WS_command($command, $output_choice, "matrix-scan", "ft")
}


################################################################
sub convert_matrix {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  if ($args{"matrix"}) {
      my $input_matrix = $args{"matrix"};
      chomp $input_matrix;
#      $tmp_matrix_infile = `mktemp $TMP/convert-matrix.XXXXXXXXXX`;
      $tmp_matrix_infile = &RSAT::util::make_temp_file("","convert-matrix", 1,0);
      open TMP_IN, ">".$tmp_matrix_infile or die "cannot open temp file ".$tmp_matrix_infile."\n";
      print TMP_IN $input_matrix;
      close TMP_IN;
      # $tmp_matrix_infile = $args{"matrix"};
  } elsif ($args{"tmp_matrix_infile"}){
      $tmp_matrix_infile = $args{"tmp_matrix_infile"};
  }
  chomp $tmp_matrix_infile;

  my $background_format = $args{"background_format"};
  my $background_pseudo = $args{"background_pseudo"};
  my $from = $args{"from"};
  my $to = $args{"to"};
  my $return = $args{"return"};
  my $sort = $args{"sort"};
  my $top = $args{"top"};
  my $pseudo = $args{"pseudo"};
  my $equi_pseudo = $args{"equi_pseudo"};
  my $base = $args{"base"};
  my $decimals = $args{"decimals"};
  my $perm = $args{"perm"};
  my $max_profile = $args{"max_profile"};
  my $rc = $args{"rc"};
#  my $logo_format = $args{"logo_format"};
#  my $logo_dir = $args{"logo_dir"};
#  my $logo_opt = $args{"logo_opt"};

  my $command = "$SCRIPTS/convert-matrix";

  if ($tmp_matrix_infile) {
      $tmp_matrix_infile =~ s/\'//g;
      $tmp_matrix_infile =~ s/\"//g;
      chomp $tmp_matrix_infile;
      $command .= " -i '".$tmp_matrix_infile."'";
  }

  if ($background_format) {
    $background_format  =~ s/\'//g;
    $background_format  =~ s/\"//g;
    $command .= " -bg_format '".$background_format."'";
  }

  if ($background_pseudo =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $background_pseudo =~ s/\'//g;
    $background_pseudo =~ s/\"//g;
    $command .= " -bg_pseudo '".$background_pseudo."'";
  }

  if ($from) {
    $from =~ s/\'//g;
    $from =~ s/\"//g;
    $command .= " -from '".$from."'";
  }

  if ($to) {
    $to =~ s/\'//g;
    $to =~ s/\"//g;
    $command .= " -to '".$to."'";
  }

  if ($return) {
      if($return =~ /ARRAY/){
          foreach my $item (@{$return}){
              $item =~ s/\'//g;
              $item =~ s/\"//g;
              $command .= " -return '" . $item ."'";
          }
      } else {
          $return =~ s/\'//g;
          $return =~ s/\"//g;
          $command .= " -return '".$return."'";
      }
  }

  if ($sort) {
    $sort =~ s/\'//g;
    $sort =~ s/\"//g;
    $command .= " -sort '".$sort."'";
  }

  if ($top =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $top =~ s/\'//g;
    $top =~ s/\"//g;
    $command .= " -top '".$top."'";
  }

  if ($pseudo =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $pseudo =~ s/\'//g;
    $pseudo =~ s/\"//g;
    $command .= " -pseudo '".$pseudo."'";
  }

  if ($equi_pseudo == 1) {
    $command .= " -equi_pseudo";
  }

  if ($base =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $base =~ s/\'//g;
    $base =~ s/\"//g;
    $command .= " -base '".$base."'";
  }

  if ($decimals =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $decimals =~ s/\'//g;
    $decimals =~ s/\"//g;
    $command .= " -decimals '".$decimals."'";
  }

  if ($perm =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $perm =~ s/\'//g;
    $perm =~ s/\"//g;
    $command .= " -perm '".$perm."'";
  }

  if ($max_profile =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $max_profile =~ s/\'//g;
    $max_profile =~ s/\"//g;
    $command .= " -max_profile '".$max_profile."'";
  }

  if ($rc == 1) {
    $command .= " -rc";
  }
    
    &run_WS_command($command, $output_choice, "convert-matrix", $to);
}

################################################################
sub matrix_from_patterns {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
        $output_choice = 'both';
    }
    my $sequence_file = $args{"sequence_file"};
    my $verbosity = $args{"verbosity"};
    my $format = $args{"format"};
    my $pattern_file = $args{"pattern_file"};
    my $output_prefix = $args{"output_prefix"};
    my $toppat = $args{"toppat"};
    my $max_asmb_nb = $args{"max_asmb_nb"};
    my $top_seq = $args{"top_seq"};
    my $score = $args{"score"};
    my $cluster = $args{"cluster"};
    my $max_asmb_per_cluster = $args{"max_asmb_per_cluster"};
    my $subst = $args{"subst"};
    my $maxfl = $args{"maxfl"};
    my $match = $args{"match"};
    my $weight = $args{"weight"};
    my $max_asmb_size = $args{"max_asmb_size"};
    my $max_asmb_width = $args{"max_asmb_width"};
    my $assembly_file = $args{"assembly_file"};
    my $str = $args{"str"};
    my $sites = $args{"sites"};
    my $collect_method = $args{"collect_method"};
    my $gibbs_msps = $args{"gibbs_msps"};
    my $gibbs_iter = $args{"gibbs_iter"};
    my $flanks = $args{"flanks"};
    my $min_weight = $args{"min_weight"};
    my $gibbs_final = $args{"gibbs_final"};
    my $logo = $args{"logo"};
    my $links = $args{"links"};
    my $scan_param = $args{"scan_param"};
    
    
    my $command = "$SCRIPTS/matrix-from-patterns";
    
    if ($sequence_file) {
        $sequence_file =~ s/\'//g;
        $sequence_file =~ s/\"//g;
        chomp $sequence_file;
        $command .= " -seq '".$sequence_file."'";
    }
    
    if ($format) {
        $format  =~ s/\'//g;
        $format  =~ s/\"//g;
        $command .= " -format '".$format."'";
    }
    
    if ($assembly_file) { ## This is to make the difference between unspecified parameter and value 0
        $assembly_file =~ s/\'//g;
        $assembly_file =~ s/\"//g;
        $command .= " -asmb '".$assembly_file."'";
    }
    
    if ($output_prefix) {
        $output_prefix =~ s/\'//g;
        $output_prefix =~ s/\"//g;
        $command .= " -o '".$output_prefix."'";
    }
    
    if ($min_weight) {
        $min_weight =~ s/\'//g;
        $min_weight =~ s/\"//g;
        $command .= " -min_weight '".$min_weight."'";
    }
    
    if ($flanks) {
        $flanks =~ s/\'//g;
        $flanks =~ s/\"//g;
        $command .= " -flanks '".$flanks."'";
    }
    
    if ($max_asmb_nb) {
        $max_asmb_nb  =~ s/\'//g;
        $max_asmb_nb =~ s/\"//g;
        $command .= " -max_asmb_nb '".$max_asmb_nb."'";
    }
    
    
    if ($logo == 1) {
        $command .= " -logo";
    }
    
    
    &run_WS_command($command, $output_choice, "matrix-from-patterns", $to);
}

################################################################
sub matrix_clustering {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $matrix_cmd = "";
  
  if($args{"matrix"}){
    my $matrix_list = $args{"matrix"};
      open (my $fh, $matrix_list) or die "Could not open file $matrix_list";
      while (my $row = <$fh>){
          chomp $row;
          if ( ! ($row =~ /#/) ){
              my @matrix = split(";", $row);
          chomp $matrix[0];
          chomp $matrix[1];
              $matrix_cmd .= " -matrix '". $matrix[0] . "' '". $matrix[1] . "'"
          }
      }

#      my $matrix_ref = $args{"matrix"};
#    foreach $matrix (@{$matrix_ref}){
#        $matrix =~s/\'//g;
#        $matrix =~s/\"//g;
#        chomp $matrix;
#    }
#    if(scalar @{$matrix_ref} == 2){
#        $matrix_cmd = " -matrix '" . ${$matrix_ref}[0] . "' '" . ${$matrix_ref}[1] . "'";
#    }elsif(scalar @{$matrix_ref} == 4){
#         $matrix_cmd = " -matrix '" . ${$matrix_ref}[0] . "' '" . ${$matrix_ref}[1] . "' -matrix '" . ${$matrix_ref}[2] . "' '" . ${$matrix_ref}[3] . "'";
#    }
  }


  my $matrix_ID_link_table = $args{"matrix_ID_link_table"}; 
  my $matrix_format = $args{"matrix_format"}; 
  my $title = $args{"title"};
  my $heatmap_position_tree = $args{"heatmap_position_tree"};
  my $task = $args{"task"};
  my $label_in_tree = $args{"label_in_tree"};
  my $label_motif = $args{"label_motif"};
  my $quick = $args{"quick"};
  my $no_clone_input = $args{"no_clone_input"};
  my $rand = $args{"rand"};
  my $heatmap_color_palette = $args{"heatmap_color_palette"};
  my $heatmap_color_classes = $args{"heatmap_color_classes"};
  my $max_matrices = $args{"max_matrices"};
  my $hclust_method = $args{"hclust_method"};
  my $top_matrices = $args{"top_matrices"};
  my $skip_matrices = $args{"skip_matrices"};
  my $metric_build_tree = $args{"metric_build_tree"};
  my $calc = $args{"calc"};
  my $trim_threshold = $args{"trim_threshold"};
  my $return = $args{"return"}; 

    ## List of lower thresholds
    my $lth_ref = $args{"lth"};
    my $lth = "";
    if ($lth_ref =~ /ARRAY/) {
      my @lth = @{$lth_ref};
      foreach $lt (@lth) {
  $lt =~s/\'//g;
  $lt =~s/\"//g;
  @_lt = split / /, $lt;
  $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
      }
    } elsif ($lth_ref) {
  @_lt = split / /, $lth_ref;
  $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }

    ## List of upper thresholds
    my $uth_ref = $args{"uth"};
    my $uth = "";
    if ($uth_ref =~ /ARRAY/) {
      my @uth = @{$uth_ref};
      foreach $ut (@uth) {
  $ut =~s/\'//g;
  $ut =~s/\"//g;
  @_ut = split / /, $ut;
  $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
      }
    } elsif ($uth_ref) {
  @_ut = split / /, $uth_ref;
  $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }

  my $command = "$SCRIPTS/matrix-clustering";

  
  if ($args{"matrix"}) {
      $command .= $matrix_cmd;
  }

  if ($matrix_format){
      $command .= addToCmd($matrix_format, "matrix_format");
  }

  if ($matrix_ID_link_table) {
      $command .= addToCmd($matrix_ID_link_table, "ID_link_table");
  }

  if ($title) {
      $command .= addToCmd($title, "title");
  }

  if($heatmap_position_tree){
      $command .= addToCmd($heatmap_position_tree, "heatmap_position_tree");
  }

  if ($task) {
      $command .= addToCmd($task, "task");
  }

  if ($label_in_tree) {
      $command .= addToCmd($label_in_tree, "label_in_tree");
  }

  if($label_motif){
      $command .= addToCmd($label_motif, "label_motif");
  }
  if($no_clone_input){
      $command .= addToCmd($no_clone_input, "no_clone_input");
  }


if ($quick == 1) {
      $command .= " -quick";
  }

  if ($rand == 1) {
      $command .= " -rand";
  }

  if($heatmap_color_palette){
      $command .= addToCmd($heatmap_color_palette, "heatmap_color_palette");
  }

  if ($heatmap_color_classes) {
     $command .= addToCmd($heatmap_color_classes, "heatmap_color_classes");
  }

  if ($max_matrices) {
     $command .= addToCmd($max_matrices, "max_matrices");
  }

  if ($hclust_method) {
     $command .= addToCmd($hclust_method, "hclust_method");
  }

  if ($top_matrices ) {
      $command .= addToCmd($top_matrices, "top_matrices");
  }

  if ($skip_matrices ) {
      $command .= addToCmd($skip_matrices, "skip_matrices");
  }

  if ($metric_build_tree ) {
      $command .= addToCmd($metric_build_tree, "metric_build_tree");
  }

  if($lth){
      $command .= $lth;
  }

  if($uth){
      $command .= $uth;
  }

  if ($calc ) {
      $command .= addToCmd($calc, "calc");
  }

  if ($trim_threshold ) {
      $command .= addToCmd($trim_threshold, "trim_threshold");
  }

  if ($return_fields) {
      $command .= addToCmd($return_fields, "return_fields");
  }

  if ($args{"output"}){
      $command .= addToCmd($args{"output"}, "o");
  }else{
      $output_dir = &RSAT::util::make_temp_file("","matrix-clustering", 1,0);
      $command .= " -o $output_dir";
  }
 # print $command;
#exec($command);
  &run_WS_command($command, $output_choice, "matrix-clustering", "")
}

sub addToCmd{
    ($param, $name) = @_;
      $param =~ s/\'//g;
      $param =~ s/\"//g;
      chomp $param;
      return " -" . $name. " '".$param."'";
}

################################################################
sub matrix_distrib {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  if ($args{"matrix_file"}) {
    my $input_matrix = $args{"matrix_file"};
    chomp $input_matrix;
#    $tmp_input_matrix = `mktemp $TMP/matdistrib-matrix_file.XXXXXXXXXX`;
    $tmp_input_matrix = &RSAT::util::make_temp_file("","matrix-distrib_infile", 1,0);
    open TMP_IN, ">".$tmp_input_matrix or die "cannot open temp file ".$tmp_input_matrix."\n";
    print TMP_IN $input_matrix;
    close TMP_IN;
  }  elsif ($args{"tmp_matrix_file"}) {
    $tmp_input_matrix = $args{"tmp_matrix_file"};
    $tmp_input_matrix =~ s/\'//g;
    $tmp_input_matrix =~ s/\"//g;
  }

  if ($args{"background"}) {
    my $background = $args{"background"};
    chomp $background;
#    $tmp_background = `mktemp $TMP/matdistrib-background.XXXXXXXXXX`;
    $tmp_background = &RSAT::util::make_temp_file("","matrix-distrib_bg", 1,0);
    open TMP_IN, ">".$tmp_background or die "cannot open temp file ".$tmp_background ."\n";
    print TMP_IN $background;
    close TMP_IN;
  }

  my $matrix_format = $args{"matrix_format"}; 
  my $background_pseudo = $args{"background_pseudo"};
  my $background_format = $args{"background_format"}; 
  my $pseudo = $args{"matrix_pseudo"};
  my $decimals = $args{"decimals"};

  my $command = "$SCRIPTS/matrix-distrib -v 1";

  if ($tmp_input_matrix) {
    $tmp_input_matrix =~ s/\'//g;
    $tmp_input_matrix =~ s/\"//g;
    chomp $tmp_input_matrix;
    $command .= " -m '".$tmp_input_matrix."'";
  }

  if ($matrix_format) {
    $matrix_format =~ s/\'//g;
    $matrix_format=~ s/\"//g;
    chomp $matrix_format;
    $command .= " -matrix_format '".$matrix_format."'";
  }

  if ($pseudo =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $pseudo =~ s/\'//g;
    $pseudo =~ s/\"//g;
    $command .= " -pseudo '".$pseudo."'";
  }

  if ($decimals =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $decimals  =~ s/\'//g;
    $decimals  =~ s/\"//g;
    $command .= " -decimals '".$decimals."'";
  }

  if ($tmp_background) {
    $tmp_background  =~ s/\'//g;
    $tmp_background  =~ s/\"//g;
    chomp $tmp_background;
    $command .= " -bgfile '".$tmp_background."'";
  }

  if ($background_format) {
    $background_format  =~ s/\'//g;
    $background_format  =~ s/\"//g;
    $command .= " -bg_format '".$background_format."'";
  }

  if ($background_pseudo =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $background_pseudo =~ s/\'//g;
    $background_pseudo =~ s/\"//g;
    $command .= " -bg_pseudo '".$background_pseudo."'";
  }

  &run_WS_command($command, $output_choice, "matrix-distrib", "tab")
}


################################################################
sub compare_matrices {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
    my $command = $self->compare_matrices_cmd(%args);

    my $date = &RSAT::util::AlphaDate();
    $date =~ s/\n//;

    my $output_directory = sprintf "compare-matrices.%s", $date;
    my $output_prefix = $args{"output_prefix"};
    my $output_path = $TMP."/".$output_directory;
    $output_path =~ s|\/\/|\/|g;
    system("mkdir -p $output_path");

    my $output_file = $output_path."/".$output_prefix.".tab";
    $command .= " -o '".$output_file."'";

    local(*HIS_IN, *HIS_OUT, *HIS_ERR);
    my $childpid = open3(*HIS_IN, *HIS_OUT, *HIS_ERR, $command);
    my @outlines = <HIS_OUT>;    # Read till EOF.
    my @errlines = <HIS_ERR>;    # XXX: block potential if massive

#    my $result = join('', @outlines);
    my $stderr;

    foreach my $errline(@errlines) {
	## Some errors and RSAT warnings are not considered as fatal errors
	unless (($errline =~ 'Use of uninitialized value') || ($errline =~'WARNING') || ($errline =~'Odd number of elements in hash assignment')) {
	    $stderr .= $errline;
	}
	## RSAT warnings are added at the end of results
#	if ($errline =~'WARNING') {
#	    $result .= $errline;
#	}
    }
    $stderr = &error_handling($stderr, 1);
    close HIS_OUT;
    close HIS_ERR;

    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }

    my $tmp_outfile = $output_path."/".$output_prefix."_index.html";
#    $tmp_outfile =~ s/\/home\/rsat\/rsa-tools\/public_html/http\:\/\/rsat\.bigre\.ulb\.ac\.be\/rsat/g;
#    $tmp_outfile =~ s/\/home\/rsat\/rsa-tools\/public_html/$ENV{rsat_www}/g; ## Re-commented by JvH on 2013-08-09. PLease dont modify without noticing to JvH.
    my $tmp_outdir = $output_path;
#    $tmp_outdir =~ s/\/home\/rsat\/rsa-tools\/public_html/http\:\/\/rsat\.bigre\.ulb\.ac\.be\/rsat/g;
#    $tmp_outdir =~ s/\/home\/rsat\/rsa-tools\/public_html/$ENV{rsat_www}/g; ## Re-commented by JvH on 2013-08-09. PLease dont modify without noticing to JvH.

    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"compare-matrices", output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('server' => $tmp_outdir),
# 			                                         SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command))))
# 				->attr({'xmlns' => ''});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
# 								 SOAP::Data->name('client' => $tmp_outdir)))
# 				->attr({'xmlns' => ''});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('server' => $tmp_outdir),
# 								 SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
# 								 SOAP::Data->name('client' => $tmp_outdir)))
# 				->attr({'xmlns' => ''});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outdir)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => &RSAT::util::hide_RSAT_path($tmp_outdir))))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outdir)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => &RSAT::util::hide_RSAT_path($tmp_outdir))))
	  ->attr({'xmlns' => ''});
  }
}


################################################################
sub compare_matrices_cmd {
  my ($self, %args) =@_;
  if ($args{"matrix_1"}) {
      my $input_matrix1 = $args{"matrix_1"};
      chomp $input_matrix1;
#      $tmp_matrix1_infile = `mktemp $TMP/compare-matrices.XXXXXXXXXX`;
      $tmp_matrix1_infile = &RSAT::util::make_temp_file("","compare-matrices_infile1", 1,0);
      open TMP_IN1, ">".$tmp_matrix1_infile or die "cannot open temp file ".$tmp_matrix1_infile."\n";
      print TMP_IN1 $input_matrix1;
      close TMP_IN1;
  } elsif ($args{tmp_matrix1_infile}){
      $tmp_matrix1_infile = $args{"tmp_matrix1_infile"};
  }
  chomp $tmp_matrix1_infile;

  if ($args{"matrix_2"}) {
      my $input_matrix2 = $args{"matrix_2"};
      chomp $input_matrix2;
#      $tmp_matrix2_infile = `mktemp $TMP/compare-matrices.XXXXXXXXXX`;
      $tmp_matrix2_infile = &RSAT::util::make_temp_file("","compare-matrices_infile2", 1,0);
      open TMP_IN2, ">".$tmp_matrix2_infile or die "cannot open temp file ".$tmp_matrix2_infile."\n";
      print TMP_IN2 $input_matrix2;
      close TMP_IN2;
  } elsif ($args{tmp_matrix2_infile}){
      $tmp_matrix2_infile = $args{"tmp_matrix2_infile"};
  }
  chomp $tmp_matrix2_infile;

  if ($args{"matrix"}) {
      my $input_matrix = $args{"matrix"};
      chomp $input_matrix;
#      $tmp_matrix_infile = `mktemp $TMP/compare-matrices.XXXXXXXXXX`;
      $tmp_matrix_infile = &RSAT::util::make_temp_file("","compare-matrices_infile", 1,0);
      open TMP_IN, ">".$tmp_matrix_infile or die "cannot open temp file ".$tmp_matrix_infile."\n";
      print TMP_IN $input_matrix;
      close TMP_IN;
  } elsif ($args{tmp_matrix_infile}){
      $tmp_matrix_infile = $args{"tmp_matrix_infile"};
  }
  chomp $tmp_matrix_infile;

#   if ($args{"matrix_list1"}) {
#       my $matrix_list1 = $args{"matrix_list1"};
#       chomp $matrix_list1;
#      # $tmp_matrix_list1_infile = `mktemp $TMP/compare-matrices.XXXXXXXXXX`;
#       $tmp_matrix_list1_infile = &RSAT::util::make_temp_file("","compare-matrices_list1", 1,0);
#       open TMP_LIST1, ">".$tmp_matrix_list1_infile or die "cannot open temp file ".$tmp_matrix_list1_infile."\n";
#       print TMP_LIST1 $matrix_list1;
#       close TMP_LIST1;
#   } elsif ($args{tmp_matrix_list1_infile}){
#       $tmp_matrix_list1_infile = $args{"tmp_matrix_list1_infile"};
#   }
#   chomp $tmp_matrix_list1_infile;

#   if ($args{"matrix_list2"}) {
#       my $matrix_list2 = $args{"matrix_list2"};
#       chomp $matrix_list2;
#      # $tmp_matrix_list2_infile = `mktemp $TMP/compare-matrices.XXXXXXXXXX`;
#       $tmp_matrix_list2_infile = &RSAT::util::make_temp_file("","compare-matrices_list2", 1,0);
#       open TMP_LIST2, ">".$tmp_matrix_list2_infile or die "cannot open temp file ".$tmp_matrix_list2_infile."\n";
#       print TMP_LIST2 $matrix_list2;
#       close TMP_LIST2;
#   } elsif ($args{tmp_matrix_list2_infile}){
#       $tmp_matrix_list2_infile = $args{"tmp_matrix_list2_infile"};
#   }
#   chomp $tmp_matrix_list2_infile;

  my $format1 = $args{"format1"};
  my $format2 = $args{"format2"};
  my $format = $args{"format"};

  if ($args{"background_model"}) {
      my $background_model = $args{"background_model"};
      chomp $background_model;
#      $tmp_background_infile = `mktemp $TMP/compare-matrices.XXXXXXXXXX`;
      $tmp_background_infile = &RSAT::util::make_temp_file("","compare-matrices_bg", 1,0);
      open TMP_BCKGND, ">".$tmp_background_infile or die "cannot open temp file ".$tmp_background_infile."\n";
      print TMP_BCKGND $background_model;
      close TMP_BCKGND;
  } elsif ($args{tmp_background_infile}){
      $tmp_background_infile = $args{"tmp_background_infile"};
  }
  chomp $tmp_background_infile;

  my $background_format = $args{"background_format"};
  my $top1 = $args{"top1"};
  my $top2 = $args{"top2"};
  my $mode = $args{"mode"};
  my $distinct = $args{"distinct"};
  my $strand = $args{"strand"};
  my $matrix_id = $args{"matrix_id"};
  my $return = $args{"return"};
  my $sort = $args{"sort"};

  ## List of lower thresholds
  my $lth_ref = $args{"lth"};
  my $lth = "";
  if ($lth_ref =~ /ARRAY/) {
    my @lth = @{$lth_ref};
    foreach $lt (@lth) {
      $lt =~s/\'//g;
      $lt =~s/\"//g;
      @_lt = split / /, $lt;
      $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
    }
  } elsif ($lth_ref) {
    @_lt = split / /, $lth_ref;
    $lth .= " -lth '".$_lt[0]."' '".$_lt[1]."'";
  }

  ## List of upper thresholds
  my $uth_ref = $args{"uth"};
  my $uth = "";
  if ($uth_ref =~ /ARRAY/) {
    my @uth = @{$uth_ref};
    foreach $ut (@uth) {
      $ut =~s/\'//g;
      $ut =~s/\"//g;
      @_ut = split / /, $ut;
      $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
    }
  } elsif ($uth_ref) {
    @_ut = split / /, $uth_ref;
    $uth .= " -uth '".$_ut[0]."' '".$_ut[1]."'";
  }

  my $command = "$SCRIPTS/compare-matrices";

  if ($tmp_matrix1_infile) {
      $tmp_matrix1_infile =~ s/\'//g;
      $tmp_matrix1_infile =~ s/\"//g;
      chomp $tmp_matrix1_infile;
      $command .= " -file1 '".$tmp_matrix1_infile."'";
  }

  if ($tmp_matrix2_infile) {
      $tmp_matrix2_infile =~ s/\'//g;
      $tmp_matrix2_infile =~ s/\"//g;
      chomp $tmp_matrix2_infile;
      $command .= " -file2 '".$tmp_matrix2_infile."'";
  }

  if ($tmp_matrix_infile) {
      $tmp_matrix_infile =~ s/\'//g;
      $tmp_matrix_infile =~ s/\"//g;
      chomp $tmp_matrix_infile;
      $command .= " -file '".$tmp_matrix_infile."'";
  }

#  if ($tmp_matrix_list1_infile) {
#      $tmp_matrix_list1_infile =~ s/\'//g;
#      $tmp_matrix_list1_infile =~ s/\"//g;
#      chomp $tmp_matrix_list1_infile;
#      $command .= " -mlist1 '".$tmp_matrix_list1_infile."'";
#  }

#  if ($tmp_matrix_list2_infile) {
#      $tmp_matrix_list2_infile =~ s/\'//g;
#      $tmp_matrix_list2_infile =~ s/\"//g;
#      chomp $tmp_matrix_list2_infile;
#      $command .= " -mlist2 '".$tmp_matrix_list2_infile."'";
#  }

  if ($format1) {
    $format1  =~ s/\'//g;
    $format1  =~ s/\"//g;
    $command .= " -format1 '".$format1."'";
  }

  if ($format2) {
    $format2  =~ s/\'//g;
    $format2  =~ s/\"//g;
    $command .= " -format2 '".$format2."'";
  }

  if ($format) {
    $format  =~ s/\'//g;
    $format  =~ s/\"//g;
    $command .= " -format '".$format."'";
  }

  if ($tmp_background_infile) {
      $tmp_background_infile =~ s/\'//g;
      $tmp_background_infile =~ s/\"//g;
      chomp $tmp_background_infile;
      $command .= " -bgfile '".$tmp_background_infile."'";
  }

  if ($background_format) {
    $background_format  =~ s/\'//g;
    $background_format  =~ s/\"//g;
    $command .= " -bg_format '".$background_format."'";
  }

  if ($top1 =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $top1 =~ s/\'//g;
    $top1 =~ s/\"//g;
    $command .= " -top1 '".$top1."'";
  }

  if ($top2 =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $top2 =~ s/\'//g;
    $top2 =~ s/\"//g;
    $command .= " -top2 '".$top2."'";
  }

  if ($mode) {
    $mode =~ s/\'//g;
    $mode =~ s/\"//g;
    $command .= " -mode '".$mode."'";
  }

  if ($distinct) {
    $distinct =~ s/\'//g;
    $distinct =~ s/\"//g;
    $command .= " -distinct";
  }

  if ($strand) {
    $strand =~ s/\'//g;
    $strand =~ s/\"//g;
    $command .= " -strand '".$strand."'";
  }

  if ($matrix_id) {
    $matrix_id =~ s/\'//g;
    $matrix_id =~ s/\"//g;
    $command .= " -matrix_id '".$matrix_id."'";
  }

  if ($return) {
    $return  =~ s/\'//g;
    $return =~ s/\"//g;
    $command .= " -return '".$return."'";
  }

  if ($sort) {
    $sort =~ s/\'//g;
    $sort =~ s/\"//g;
    $command .= " -sort '".$sort."'";
  }

  if ($lth) {
    $command .= $lth;
  }

  if ($uth) {
    $command .= $uth;
  }

  return $command;
}


################################################################
sub random_seq {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/random-seq";

  if ($args{sequence_length}) {
      $args{sequence_length} =~ s/\'//g;
      $args{sequence_length} =~ s/\"//g;
      $command .= " -l '".$args{sequence_length}."'";
  }
  if ($args{repetition}) {
      $args{repetition} =~ s/\'//g;
      $args{repetition} =~ s/\"//g;
      $command .= " -n '".$args{repetition}."'";
  }
  if ($args{format}) {
      $args{format} =~ s/\'//g;
      $args{format} =~ s/\"//g;
      $command .= " -format '".$args{format}."'";
  }
  if ($args{line_width} =~ /\d/) {
      $args{line_width} =~ s/\'//g;
      $args{line_width} =~ s/\"//g;
      $command .= " -lw '".$args{line_width}."'";
  }
  if ($args{type}) {
      $args{type} =~ s/\'//g;
      $args{type} =~ s/\"//g;
      $command .= " -type '".$args{type}."'";
  }
  if ($args{seed}) {
      $args{seed} =~ s/\'//g;
      $args{seed} =~ s/\"//g;
      $command .= " -seed '".$args{seed}."'";
  }
  if ($args{alphabet}) {
      $args{alphabet} =~ s/\'//g;
      $args{alphabet} =~ s/\"//g;
      $command .= " -a '".$args{alphabet}."'";
  }
  if ($args{bg_model}) {
      $args{bg_model} =~ s/\'//g;
      $args{bg_model} =~ s/\"//g;
      $command .= " -bg '".$args{bg_model}."'";
  }
  if ($args{organism}) {
      $args{organism} =~ s/\'//g;
      $args{aorganism} =~ s/\"//g;
      $command .= " -org '".$args{organism}."'";
  }
  if ($args{oligo_length}) {
      $args{oligo_length} =~ s/\'//g;
      $args{oligo_length} =~ s/\"//g;
      $command .= " -ol '".$args{oligo_length}."'";
  }
  if ($args{"expfreq"}) {
    my $expfreq = $args{"expfreq"};
    chomp $expfreq;
#    $tmp_expfreq = `mktemp $TMP/expfreq.XXXXXXXXXX`;
    $tmp_expfreq = &RSAT::util::make_temp_file("","expfreq", 1,0);
    open TMP_IN, ">".$tmp_expfreq or die "cannot open temp file ".$tmp_expfreq."\n";
    print TMP_IN $expfreq;
    close TMP_IN;
    chomp $tmp_expfreq;
    $command .= " -expfreq '".$tmp_expfreq."'";
  } elsif ($args{"tmp_expfreq_file"}) {
    $tmp_expfreq = $args{"tmp_expfreq_file"};
    $tmp_expfreq =~ s/\'//g;
    $tmp_expfreq =~ s/\"//g;
    chomp $tmp_expfreq;
    $command .= " -expfreq '".$tmp_expfreq."'";
  }
  if ($args{length_file}) {
    my $length_file = $args{length_file};
    chomp $length_file;
#    $tmp_length = `mktemp $TMP/length.XXXXXXXXXX`;
    $tmp_length = &RSAT::util::make_temp_file("","length", 1,0);
    open TMP_IN, ">".$tmp_length or die "cannot open temp file ".$tmp_length."\n";
    print TMP_IN $length_file;
    close TMP_IN;
    chomp $tmp_length;
    $command .= " -lf '".$tmp_length."'";
  } elsif ($args{tmp_length_file}) {
    $tmp_length  = $args{tmp_length_file};
    $tmp_length =~ s/\'//g;
    $tmp_length =~ s/\"//g;
    chomp $tmp_length;
    $command .= " -lf '".$tmp_length."'";
  }

 &run_WS_command($command, $output_choice, "random-seq", $args{format})
}


################################################################
sub fetch_sequences {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  if ($args{"input"}) {
      my $input = $args{"input"};
      chomp $input;
      $tmp_input_file = &RSAT::util::make_temp_file("","fetch-sequences", 1,0);
      open TMP_IN, ">".$tmp_input_file or die "cannot open temp file ".$tmp_input_file."\n";
      print TMP_IN $input;
      close TMP_IN;
  } elsif ($args{"tmp_input_file"}) {
      $tmp_input_file = $args{"tmp_input_file"};
      $tmp_input_file =~ s/\'//g;
      $tmp_input_file =~ s/\"//g;
  }
  chomp $tmp_input_file;

  my $url = $args{"url"};
  my $genome = $args{"genome"};
  my $header = $args{"header_format"};
  my $upstr_ext = $args{"upstr_ext"};
  my $downstr_ext = $args{"downstr_ext"};
  my $extend = $args{"extend"};
  my $reference = $args{"reference"};
  my $top = $args{"top"};
  my $chunk = $args{"chunck"};

  my $command = "$SCRIPTS/fetch-sequences";

  if ($tmp_input_file) {
      $command .= " -i '".$tmp_input_file."'";
  }

  if ($url) {
    $url =~ s/\'//g;
    $url =~ s/\"//g;
    $command .= " -u '".$url."'";
  }

  if ($genome) {
    $genome =~ s/\'//g;
    $genome =~ s/\"//g;
    $command .= " -genome '".$genome."'";
  }

  ## Header format
  if ($header) {
    $header =~ s/\'//g;
    $header =~ s/\"//g;
    $command .= " -header_format '".$header."'";
  }

  if ($upstr_ext =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $upstr_ext =~ s/\'//g;
    $upstr_ext =~ s/\"//g;
    $command .= " -upstr_ext '".$upstr_ext."'";
  }

  if ($downstr_ext =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $downstr_ext =~ s/\'//g;
    $downstr_ext =~ s/\"//g;
    $command .= " -downstr_ext '".$downstr_ext."'";
  }

  if ($extend =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $extend =~ s/\'//g;
    $extend =~ s/\"//g;
    $command .= " -extend '".$extend."'";
 }

  if ($reference) {
    $reference =~ s/\'//g;
    $reference =~ s/\"//g;
    $command .= " -reference '".$reference."'";
  }

  if ($top =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $top =~ s/\'//g;
    $top =~ s/\"//g;
    $command .= " -top '".$top."'";
 }

  if ($chunck =~ /\d/) { ## This is to make the difference between unspecified parameter and value 0
    $chunck =~ s/\'//g;
    $chunck =~ s/\"//g;
    $command .= " -chunck '".$chunck."'";
 }

#  &RSAT::error::FatalError("&RSAT::RSATWS::fetch_sequence()", "command", $command);

  &run_WS_command($command, $output_choice, "fetch-sequences", $format);
}


################################################################
## RSAT GRAPH TOOLS

################################################################

sub convert_graph {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
#    my $tmp_outfile = `mktemp $TMP/convert-graph.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","convert-graph_outfile", 1,0);
    my $out_format = $args{outformat};
    $out_format =~ s/\'//g;
    $out_format =~ s/\'//g;
    chop $tmp_outfile;
    system("rm $tmp_outfile");
    $tmp_outfile .= ".$out_format";

    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
#     print TMP_OUT $result;
#     print TMP_OUT "KEYS ".keys(%args);
    close TMP_OUT;
    my $command = $self->convert_graph_cmd(%args);
    $command .= " -o $tmp_outfile";
    system $command;
    my $result = `cat $tmp_outfile`;
    my $stderr = `$command 2>&1 1>/dev/null`;

    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");

    }
    $stderr = &error_handling($stderr, 1);

    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"convert-graph",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# #           open TRUC, ">/home/rsat/rsa-tools/public_html/tmp/truc.brol";
#     print TRUC "$result";
#     close TRUC;  
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub convert_graph_cmd {
  my ($self, %args) =@_;

  my $command = "$SCRIPTS/convert-graph ";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\"//g;
   $command .= " -from $in_format";
  }
  if ($args{ecolors}) {
   my $col_scale = $args{ecolors};
   $col_scale =~ s/\'//g;
   $col_scale =~ s/\"//g;
   $command .= " -ecolors $col_scale";
  }
  if ($args{undirected}) {
   $command .= " -undirected";
  }
  if ($args{ewidth}) {
   $command .= " -ewidth";
  }

  ## TEMPORARY: the php page only passes a boolean argument layou=1 or 1. 
  ## This should be replaced by a value (spring|random|none)
  if ($args{layout}) {
   $command .= " -layout spring";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -to $out_format";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{eccol}) {
   my $eccol = $args{eccol};
   $eccol =~ s/\'//g;
   $eccol =~ s/\'//g;
   $command .= " -eccol $eccol";
  }
  if ($args{tccol}) {
   my $tccol = $args{tccol};
   $tccol =~ s/\'//g;
   $tccol =~ s/\'//g;
   $command .= " -tccol $tccol";
  }
  if ($args{sccol}) {
   my $sccol = $args{sccol};
   $sccol =~ s/\'//g;
   $sccol =~ s/\'//g;
   $command .= " -sccol $sccol";
  }
  if ($args{pathcol}) {
   my $pathcol = $args{pathcol};
   $pathcol =~ s/\'//g;
   $pathcol =~ s/\'//g;
   $command .= " -pathcol $pathcol";
  }
  if ($args{distinct_path}) {
   $command .= " -distinct_path";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/convert-graph-input.XXXXXXXXXX`;
    my $tmp_input = &RSAT::util::make_temp_file("","convert-graph_infile", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  return $command;
}


################################################################
sub alter_graph {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/alter-graph";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\"//g;
   $command .= " -in_format $in_format";
  }
  if ($args{duplicate}) {
   $command .= " -duplicate";
  }
  if ($args{directed}) {
   $command .= " -directed";
  }
  if ($args{self}) {
   $command .= " -self";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -out_format $out_format";
  }
  if ($args{add_nodes}) {
   my $add_nodes = $args{add_nodes};
   $add_nodes =~ s/\'//g;
   $add_nodes =~ s/\'//g;
   $command .= " -add_nodes $add_nodes";
  }
  if ($args{rm_nodes}) {
   my $rm_nodes = $args{rm_nodes};
   $rm_nodes =~ s/\'//g;
   $rm_nodes =~ s/\'//g;
   $command .= " -rm_nodes $rm_nodes";
  }
  if ($args{add_edges}) {
   my $add_edges = $args{add_edges};
   $add_edges =~ s/\'//g;
   $add_edges =~ s/\'//g;
   $command .= " -add_edges $add_edges";
  }
  if ($args{rm_edges}) {
   my $rm_edges = $args{rm_edges};
   $rm_edges =~ s/\'//g;
   $rm_edges =~ s/\'//g;
   $command .= " -rm_edges $rm_edges";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{target}) {
   my $target = $args{target};
   $target =~ s/\'//g;
   $target =~ s/\'//g;
   $command .= " -target $target";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/alter-graph-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","alter-graph_infile", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  my $extension = $args{outformat} || "tab";
  &run_WS_command($command, $output_choice, "alter-graph", $extension);
}



################################################################
sub graph_cliques {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/graph-cliques";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\"//g;
   $command .= " -in_format $in_format";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{min_size}) {
   my $min_size = $args{min_size};
   $min_size =~ s/\'//g;
   $min_size =~ s/\'//g;
   $command .= " -min_size $min_size";
  }
  if ($args{max_size}) {
   my $max_size = $args{max_size};
   $max_size =~ s/\'//g;
   $max_size =~ s/\'//g;
   $command .= " -max_size $max_size";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/graph-clique-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-clique_infile", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }


  &run_WS_command($command, $output_choice, "graph-clique", "tab");
}

################################################################
sub display_graph {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;

    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->display_graph_cmd(%args);
    ## IMAGE OUTPUT FORMAT RECUPERATION
    my $out_format = $args{outformat};
    $out_format =~ s/\'//g;
    $out_format =~ s/\'//g;
#    my $tmp_outfile = `mktemp $TMP/display_graph.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","display-graph_outfile", 1,0);
    chop $tmp_outfile;
    system("rm $tmp_outfile");
    $tmp_outfile .= ".$out_format";
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    close TMP_OUT;
    $command .= " -o $tmp_outfile";

    system $command;

    my $result = `cat $tmp_outfile`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    $stderr = &error_handling($stderr, 1);

    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }

        &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"display-graph",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}


sub display_graph_cmd {
  my ($self, %args) =@_;

  my $command = "$SCRIPTS/display-graph";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  ## TEMPORARY: the php page only passes a boolean argument layou=1 or 1. 
  ## This should be replaced by a value (spring|random|none)
  if ($args{layout}) {
   $command .= " -layout spring";
  }
  if ($args{ewidth}) {
   $command .= " -ewidth";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -out_format $out_format";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{eccol}) {
   my $eccol = $args{eccol};
   $eccol =~ s/\'//g;
   $eccol =~ s/\'//g;
   $command .= " -eccol $eccol";
  }
  if ($args{tccol}) {
   my $tccol = $args{tccol};
   $tccol =~ s/\'//g;
   $tccol =~ s/\'//g;
   $command .= " -tccol $tccol";
  }
  if ($args{sccol}) {
   my $sccol = $args{sccol};
   $sccol =~ s/\'//g;
   $sccol =~ s/\'//g;
   $command .= " -sccol $sccol";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/display-graph-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","display-graph_infile", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }

  return $command;
}



################################################################
sub draw_heatmap {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;

## commented by JvH on 2013-08-09. PLease dont modify without noticing to JvH.
#    open TEMP, ">/home/rsat/rsa-tools/public_html/tmp/newtest";
#    print TEMP join ("", %args);

    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->draw_heatmap_cmd(%args);
    ## IMAGE OUTPUT FORMAT RECUPERATION
    my $out_format = $args{outformat} || "png";
    $out_format =~ s/\'//g;
    $out_format =~ s/\'//g;
#    my $tmp_outfile = `mktemp $TMP/draw-heatmap.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","draw-heatmap_outfile", 1,0);
    chomp $tmp_outfile;
    system("rm $tmp_outfile");
    $tmp_outfile .= ".$out_format";
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    close TMP_OUT;
    my $tmp_outfile_html = $tmp_outfile.".html";
    $command .= " -o $tmp_outfile";
    if ($args {html}) {
      $command .= " -html $tmp_outfile_html";
    }
    my $result = `cat $tmp_outfile`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    $stderr = &error_handling($stderr, 1);

    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }

        &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"draw-heatmap",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#       } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub draw_heatmap_cmd {
  my ($self, %args) = @_;

  my $command = "$SCRIPTS/draw-heatmap";

  if ($args{no_text}) {
   $command .= " -no_text";
  }
  if ($args{row_names}) {
   $command .= " -rownames";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -out_format $out_format";
  }
  if ($args{gradient}) {
   my $gradient = $args{gradient};
   $gradient =~ s/\'//g;
   $gradient =~ s/\'//g;
   $command .= " -gradient $gradient";
  }
  if ($args{min}) {
   my $min = $args{min};
   $min =~ s/\'//g;
   $min =~ s/\'//g;
   $command .= " -min $min";
  }
  if ($args{max}) {
   my $max = $args{max};
   $max =~ s/\'//g;
   $max =~ s/\'//g;
   $command .= " -max $max";
  }
  if ($args{col_width}) {
   my $col_width = $args{col_width};
   $col_width =~ s/\'//g;
   $col_width =~ s/\'//g;
   $command .= " -col_width $col_width";
  }
  if ($args{row_height}) {
   my $row_height = $args{row_height};
   $row_height =~ s/\'//g;
   $row_height =~ s/\'//g;
   $command .= " -row_height $row_height";
  }
  if ($args{inputfile}) {
   my $input_file = $args{inputfile};
   chomp $input_file;
#   my $tmp_input = `mktemp $TMP/draw-heatmap-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","draw-heatmap_infile", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $input_file;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }

  return $command;
}



################################################################
# sub graph_get_clusters {
#     my ($self, $args_ref) = @_;
#     my %args = %$args_ref;
#     my $output_choice = $args{"output"};
#     unless ($output_choice) {
# 	$output_choice = 'both';
#     }
#     my $command = $self->graph_get_clusters_cmd(%args);
#     my $result = `$command`;
#     my $stderr = `$command 2>&1 1>/dev/null`;
#     if ($stderr) {
# 	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
#     }
#     #my $tmp_outfile = `mktemp $TMP/graph-get-clusters-out.XXXXXXXXXX`;
#     my $tmp_outfile = &RSAT::util::make_temp_file("","graph-get-clusters_outfile", 1,0);
#     open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
#     print TMP_OUT $result;
# #     print TMP_OUT "KEYS ".keys(%args);
#     close TMP_OUT;
#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }
# }

sub graph_get_clusters {

  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/graph-get-clusters ";
  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -out_format $out_format";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{return}) {
   my $return = $args{return};
   $return =~ s/\'//g;
   $return =~ s/\'//g;
   $command .= " -return $return";
  }
  if ($args{induced}) {
   my $tcol = $args{tcol};
   $command .= " -induced";
  }
  if ($args{distinct}) {
   my $tcol = $args{tcol};
   $command .= " -distinct";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/graph-get-clusters-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-get-clusters_ingraph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{clusters}) {
   my $input_clusters = $args{clusters};
   chomp $input_clusters;
#   my $tmp_input = `mktemp $TMP/graph-get-clusters-input-clusters.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-get-clusters_inclusters", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open clusters temp file ".$tmp_input."\n";
   print TMP_IN $input_clusters;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -clusters '".$tmp_input."'";
  }
  my $extension = $args{outformat} || "tab";
  &run_WS_command($command, $output_choice, "graph-get-clusters", $extension);
}


sub graph_node_degree {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
  my $command = "$SCRIPTS/graph-node-degree";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{all}) {
   my $tcol = $args{tcol};
   $command .= " -all";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/graph-node-degree-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-node-degree_ingraph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{nodefile}) {
   my $nodefile = $args{nodefile};
   chomp $nodefile;
#   my $tmp_input = `mktemp $TMP/graph-node-degree-input-nodes.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-node-degree_innodes", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open clusters temp file ".$tmp_input."\n";
   print TMP_IN $nodefile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -nodef '".$tmp_input."'";
  }
  &run_WS_command($command, $output_choice, "graph-node-degree", "tab");

}


#################################
# graph-topology

sub graph_topology {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
#    my $tmp_outfile = `mktemp $TMP/graph_topology.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","graph-topology_outfile", 1,0);
    chomp $tmp_outfile;
    $tmp_outfile.".tab";
    system ("rm $tmp_outfile");
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
#     print TMP_OUT $result;
#     print TMP_OUT "KEYS ".keys(%args);
    close TMP_OUT;
    my $command = $self->graph_topology_cmd(%args);
    $command .= " -o '$tmp_outfile'";

    system $command;
    my $result = `cat $tmp_outfile`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    $stderr = &error_handling($stderr, 1);
    if ($stderr) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");

    }

    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"graph_topology",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}


sub graph_topology_cmd {
  my ($self, %args) = @_;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }
  my $command = "$SCRIPTS/graph-topology";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{all}) {
   my $tcol = $args{tcol};
   $command .= " -all";
  }
  if ($args{directed}) {
   $command .= " -directed";
  }
  if ($args{'return'}) {
   my $return = $args{'return'};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -return $return";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/graph-topology-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-topology_ingraph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{nodefile}) {
   my $nodefile = $args{nodefile};
   chomp $nodefile;
#   my $tmp_input = `mktemp $TMP/graph-topology-input-nodes.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-topology_innodes", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open clusters temp file ".$tmp_input."\n";
   print TMP_IN $nodefile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -nodef '".$tmp_input."'";
  }
  return ($command);

}


################################################################
sub graph_cluster_membership {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->graph_cluster_membership_cmd(%args);
    my $result = `$command`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    $stderr = &error_handling($stderr, 1);
    if ($stderr != "" && $stderr !~ /INFO/ && $stderr !~ /WARNING/) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }
#    my $tmp_outfile = `mktemp $TMP/graph-cluster-membership-out.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","graph-cluster-membership_out", 1,0);
    chomp($tmp_outfile);
    my $prefix = $tmp_outfile;
    my $tmp_comments = $prefix.".tab.comments";
    $tmp_outfile = $prefix.".tab";

    system("rm $tmp_outfile");
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    print TMP_OUT $result;

#     print TMP_OUT "KEYS ".keys(%args);
    close TMP_OUT;
    # Print the comments
    open COMMENTS_OUT, ">".$tmp_comments or die "cannot open temp file ".$tmp_comments."\n";
    print COMMENTS_OUT $stderr;
    close COMMENTS_OUT;


    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"graph-cluster-membership",output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub graph_cluster_membership_cmd {
  my ($self, %args) =@_;

  my $command = "$SCRIPTS/graph-cluster-membership";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  if ($args{stat}) {
   my $stat = $args{stat};
   $stat =~ s/\'//g;
   $stat =~ s/\'//g;
   $command .= " -stat $stat";
  }
  if ($args{decimals}) {
   my $decimals = $args{decimals};
   $decimals =~ s/\'//g;
   $decimals =~ s/\'//g;
   $command .= " -decimals $decimals";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }

  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/graph-cluster-membership-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-cluster-membership_ingraph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{clusters}) {
   my $clusters = $args{clusters};
   chomp $clusters;
#   my $tmp_input = `mktemp $TMP/graph-cluster-membership-clusters.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph-cluster-membership_inclusters", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open clusters temp file ".$tmp_input."\n";
   print TMP_IN $clusters;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -clusters '".$tmp_input."'";
  }
  return $command;
}


################################################################
sub compare_graphs {
    ## In order to recuperate the statistics calculated by compare-graphs, I
    ## place all the standard error in a separate file. Indeed the computation
    ## is blocked if the standard error contains the word "Error" .
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->compare_graphs_cmd(%args);
    my $result = `$command`;

    my $stderr = `$command 2>&1 1>/dev/null`;
    $stderr = &error_handling($stderr, 1);

    if ($stderr =~ /Warning/) {
	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
    }
#    my $tmp_outfile = `mktemp $TMP/compare-graphs-out.XXXXXXXXXX`;
#    chomp($tmp_outfile);
    my $tmp_outfile = &RSAT::util::make_temp_file("","compare-graphs-out", 1,0);
    my $extension = $args{outformat} || "tab";
    $tmp_outfile .= ".".$extension;
    system ("rm $tmp_outfile");

    my $tmp_comments = $tmp_outfile.".comments";
    # Print the results
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    print TMP_OUT $result;
    close TMP_OUT;

    # Print the comments
    open COMMENTS_OUT, ">".$tmp_comments or die "cannot open temp file ".$tmp_comments."\n";
    print COMMENTS_OUT $stderr;
    close COMMENTS_OUT;
    &UpdateLogFileWS(command=>$command, tmp_outfile=>$tmp_outfile, method_name=>"compare-graphs",output_choice=>$output_choice);


#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

sub compare_graphs_cmd {
  my ($self, %args) =@_;

  my $command = "$SCRIPTS/compare-graphs -v 1 ";
#  my $command = "HELLO FROM caminante";

  if ($args{Qinformat}) {
   my $Qin_format = $args{Qinformat};
   $Qin_format =~ s/\'//g;
   $Qin_format =~ s/\'//g;
   $command .= " -in_format_Q $Qin_format";
  }

  if ($args{Rinformat}) {
   my $Rin_format = $args{Rinformat};
   $Rin_format =~ s/\'//g;
   $Rin_format =~ s/\'//g;
   $command .= " -in_format_R $Rin_format";
  }

  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -out_format $out_format";
  }

  if ($args{outweight}) {
   my $outweight = $args{outweight};
   $outweight =~ s/\'//g;
   $outweight =~ s/\'//g;
   $command .= " -outweight $outweight";
  }

  if ($args{return}) {
   my $return = $args{return};
   $return =~ s/\'//g;
   $return =~ s/\'//g;
   $command .= " -return $return";
  }

  if ($args{Qwcol}) {
   my $wcol_q = $args{Qwcol};
   $wcol_q =~ s/\'//g;
   $wcol_q =~ s/\'//g;
   $command .= " -wcol_Q $wcol_q";
  }

  if ($args{Qscol}) {
   my $scol_q = $args{Qscol};
   $scol_q =~ s/\'//g;
   $scol_q =~ s/\'//g;
   $command .= " -scol_Q $scol_q";
  }

  if ($args{Qtcol}) {
   my $tcol_q = $args{Qtcol};
   $tcol_q =~ s/\'//g;
   $tcol_q =~ s/\'//g;
   $command .= " -tcol_Q $tcol_q";
  }

  if ($args{Rwcol}) {
   my $wcol_r = $args{Rwcol};
   $wcol_r =~ s/\'//g;
   $wcol_r =~ s/\'//g;
   $command .= " -wcol_R $wcol_r";
  }

  if ($args{Rscol}) {
   my $scol_r = $args{Rscol};
   $scol_r =~ s/\'//g;
   $scol_r =~ s/\'//g;
   $command .= " -scol_R $scol_r";
  }

  if ($args{Rtcol}) {
   my $tcol_r = $args{Rtcol};
   $tcol_r =~ s/\'//g;
   $tcol_r =~ s/\'//g;
   $command .= " -tcol_R $tcol_r";
  }

  if ($args{Qinputgraph}) {
   my $input_graph = $args{Qinputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/compare-graphs-query-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","compare-graphs-query-input-graph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -Q '".$tmp_input."'";
  }

  if ($args{Rinputgraph}) {
   my $input_graph = $args{Rinputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/compare-graphs-reference-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","compare-graphs-reference-input-graph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -R '".$tmp_input."'";
  }

  return $command;
}


################################################################
sub graph_neighbours {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/graph-neighbours";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{steps}) {
   my $steps = $args{steps};
   $steps =~ s/\'//g;
   $steps =~ s/\'//g;
   $command .= " -steps $steps";
  }
  if ($args{all}) {
   $command .= " -all";
  }
  if ($args{stats}) {
   my $stats = $args{stats};
   $command .= " -stats";
  }
  if ($args{direction}) {
   my $direction = $args{direction};
   $direction =~ s/\'//g;
   $direction =~ s/\'//g;
   $command .= " -direction $direction";
  }
  if ($args{self}) {
   my $self = $args{self};
   $command .= " -self";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/graph_neighbours-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph_neighbours-input-graph", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  if ($args{seedfile}) {
   my $seedfile = $args{seedfile};
   chomp $seedfile;
#   my $tmp_input = `mktemp $TMP/graph_neighbours-seed-nodes.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","graph_neighbours-seed-nodes", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open clusters temp file ".$tmp_input."\n";
   print TMP_IN $seedfile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -seedf '".$tmp_input."'";
  }
  &run_WS_command($command, $output_choice, "graph-neighbours", "tab");
}


################################################################
sub rnsc {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }

    my $command = $self->rnsc_cmd(%args);
#    my $tmp_outfile = `mktemp $TMP/rnsc-out.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","rnsc-out", 1,0);
    chomp $tmp_outfile;
    $tmp_logfile = $tmp_outfile.".log";

    $command .= " -o $tmp_outfile > $tmp_logfile";
#     my $result = `$command`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    system("$command");
    $result = `cat $tmp_outfile`;

#     if ($stderr) {
# 	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
#     }
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    print TMP_OUT $result;
#     print TMP_OUT "KEYS ".keys(%args);
    close TMP_OUT;


    &UpdateLogFileWS(command=>$command,
		     tmp_outfile=>$tmp_outfile,
		     method_name=>"RNSC",
		     output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}


=pod

=item B<rnsc_cmd>


Generate the command for the network-based clustering algorithm RNSC
(developed by Igor Jurisica's group).

=cut

sub rnsc_cmd {
  my ($self, %args) =@_;

#  my $command = "rnsc";
#  if (-e $ENV{RSAT}."/bin/rnsc") {
#    $command = $ENV{RSAT}."/bin/rnsc";
#  }
  my $command = &RSAT::server::GetProgramPath("rnsc");

  ## Check that the rnsc command file exists
  unless (-e $command) {
    die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("rnsc command file does not exist ".$command);
  }

  ## Check that the rnsc command file can be executed
  unless (-x $command) {
    die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("rnsc command file exists but cannot be executed ".$command);
  }

  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/rnsc-input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","rnsc-input", 1,0);
   chomp $tmp_input;
   open TMP_IN, ">".$tmp_input or die "cannot open temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -g '".$tmp_input."'";
  }

  if ($args{max_clust}) {
   my $max_clust = $args{max_clust};
   $max_clust =~ s/\'//g;
   $max_clust =~ s/\'//g;
   $command .= " -c $max_clust";
  }
  if ($args{tabulist}) {
   my $tabulist = $args{tabulist};
   $tabulist =~ s/\'//g;
   $tabulist =~ s/\'//g;
   $command .= " -t $tabulist";
  }
  if ($args{tabulength}) {
   my $tabulength = $args{tabulength};
   $tabulength =~ s/\'//g;
   $tabulength =~ s/\'//g;
   $command .= " -T $tabulength";
  }
  if ($args{naive_stop}) {
   my $naive_stop = $args{naive_stop};
   $naive_stop =~ s/\'//g;
   $naive_stop =~ s/\'//g;
   $command .= " -n $naive_stop";
  }
  if ($args{scale_stop}) {
   my $scale_stop = $args{scale_stop};
   $scale_stop =~ s/\'//g;
   $scale_stop =~ s/\'//g;
   $command .= " -N $scale_stop";
  }
  if ($args{div_freq}) {
   my $div_freq = $args{div_freq};
   $div_freq =~ s/\'//g;
   $div_freq =~ s/\'//g;
   $command .= " -D $div_freq";
  }
  if ($args{exp_nb}) {
   my $exp_nb = $args{exp_nb};
   $exp_nb =~ s/\'//g;
   $exp_nb =~ s/\'//g;
   $command .= " -e $exp_nb";
  }
  if ($args{shf_div_len}) {
   my $shf_div_len = $args{shf_div_len};
   $shf_div_len =~ s/\'//g;
   $shf_div_len =~ s/\'//g;
   $command .= " -d $shf_div_len";
  }
  return $command;
}

=pod

=item B<mcl>

Run the network-based clustering program mcl, developed by Stijn van
Dongen, Web interface on NeAT by Sylvain Brohée.

=cut
sub mcl {
    my ($self, $args_ref) = @_;
    my %args = %$args_ref;
    my $output_choice = $args{"output"};
    unless ($output_choice) {
	$output_choice = 'both';
    }
    my $command = $self->mcl_cmd(%args);
#    my $tmp_outfile = `mktemp $TMP/mcl-out.XXXXXXXXXX`;
    my $tmp_outfile = &RSAT::util::make_temp_file("","mcl-out", 1,0);
    chomp $tmp_outfile;
    $command .= "-o $tmp_outfile";
#     my $result = `$command`;
    my $stderr = `$command 2>&1 1>/dev/null`;
    system("$command");
    $result = `cat $tmp_outfile`;

#     if ($stderr) {
# 	die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: $command");
#     }
    open TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
    print TMP_OUT $result;
#     print TMP_OUT "KEYS ".keys(%args);
    close TMP_OUT;

    &UpdateLogFileWS(command=>$command,
		     tmp_outfile=>$tmp_outfile,
		     method_name=>$method_name,
		     output_choice=>$output_choice);

#     if ($output_choice eq 'server') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'server' => $tmp_outfile});
#     } elsif ($output_choice eq 'client') {
# 	return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
# 					       'client' => $result});
#     } elsif ($output_choice eq 'both') {
# 	return SOAP::Data->name('response' => {'server' => $tmp_outfile,
# 					       'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command), 
# 					       'client' => $result});
#     }

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}

=pod

Generate the MCL command.

=cut
sub mcl_cmd {
  my ($self, %args) =@_;

  my $command = &RSAT::server::GetProgramPath("mcl");

  ## Check that the mcl command file exists
  unless (-e $command) {
    die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("mcl command file does not exist ".$command);
  }

  ## Check that the mcl command file can be executed
  unless (-x $command) {
    die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("mcl command file exists but cannot be executed ".$command);
  }

  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/mcl-input-graph.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","mcl-input-graph", 1,0);
       ## REMOVE ALL LEADING #
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   my @input_graph_cp = split("\n", $input_graph);
   foreach my $line (@input_graph_cp) {
     next if ($line =~ /^#/);
     next if ($line =~ /^;/);
     print TMP_IN $line."\n";
   }
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " '".$tmp_input."'";
  }

  if ($args{inflation}) {
   my $inflation = $args{inflation};
   $inflation =~ s/\'//g;
   $inflation =~ s/\'//g;
   $command .= " -I $inflation --abc -V all ";
  }
  return $command;
}

################################################################
sub parse_psi_xml {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/parse-psi-xml";
  if ($args{channels}) {
   my $channelList = $args{channels};
   $channelList =~ s/\'//g;
   $channelList =~ s/\'//g;
   @channels = split ',', $channelList;
   foreach my $channel (@channels) {
     $command .= " -channel $channel";
   }
  }
  if ($args{interactor_type}) {
   my $interactor_type_list = $args{interactor_type};
   $interactor_type_list =~ s/\'//g;
   $interactor_type_list =~ s/\'//g;
   @interactor_types = split ',', $interactor_type_list;
   foreach my $interactor_type (@interactor_types) {
     $command .= " -interactor_type $interactor_type";
   }
  }
  if ($args{uth}) {
   my $uth = $args{uth};
   $uth =~ s/\'//g;
   $uth =~ s/\'//g;
   $command .= " -uth $uth";
  }
  if ($args{lth}) {
   my $lth = $args{lth};
   $lth =~ s/\'//g;
   $lth =~ s/\'//g;
   $command .= " -lth $lth";
  }
  if ($args{inputfile}) {
   my $input_graph = $args{inputfile};
   chomp $input_graph;
#   my $tmp_input = `mktemp $TMP/parse-psi-xml_input.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","parse-psi-xml_input", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
   print TMP_IN $input_graph;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -i '".$tmp_input."'";
  }
  &run_WS_command($command, $output_choice, "parse-psi-xml", "tab");
}

################################################################
sub random_graph {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $output_choice = $args{"output"};
  unless ($output_choice) {
    $output_choice = 'both';
  }

  my $command = "$SCRIPTS/random-graph";

  if ($args{informat}) {
   my $in_format = $args{informat};
   $in_format =~ s/\'//g;
   $in_format =~ s/\'//g;
   $command .= " -in_format $in_format";
  }
  if ($args{outformat}) {
   my $out_format = $args{outformat};
   $out_format =~ s/\'//g;
   $out_format =~ s/\'//g;
   $command .= " -out_format $out_format";
  }
  if ($args{random_type}) {
   my $random_type = $args{random_type};
   $random_type =~ s/\'//g;
   $random_type =~ s/\'//g;
   $command .= " -random_type $random_type";
  }
  if ($args{edges}) {
   my $edges = $args{edges};
   $edges =~ s/\'//g;
   $edges =~ s/\'//g;
   $command .= " -edges $edges";
  }
  if ($args{nodes}) {
   my $nodes = $args{nodes};
   $nodes =~ s/\'//g;
   $nodes =~ s/\'//g;
   $command .= " -nodes $nodes";
  }
  if ($args{mean}) {
   my $mean = $args{mean};
   $mean =~ s/\'//g;
   $mean =~ s/\'//g;
   $command .= " -mean $mean";
  }
  if ($args{sd}) {
   my $sd = $args{sd};
   $sd =~ s/\'//g;
   $sd =~ s/\'//g;
   $command .= " -sd $sd";
  }
  if ($args{degree}) {
   my $degree = $args{degree};
   $degree =~ s/\'//g;
   $degree =~ s/\'//g;
   $command .= " -degree $edges";
  }
  if ($args{wcol}) {
   my $wcol = $args{wcol};
   $wcol =~ s/\'//g;
   $wcol =~ s/\'//g;
   $command .= " -wcol $wcol";
  }
  if ($args{scol}) {
   my $scol = $args{scol};
   $scol =~ s/\'//g;
   $scol =~ s/\'//g;
   $command .= " -scol $scol";
  }
  if ($args{tcol}) {
   my $tcol = $args{tcol};
   $tcol =~ s/\'//g;
   $tcol =~ s/\'//g;
   $command .= " -tcol $tcol";
  }
  if ($args{directed}) {
   my $directed = $args{directed};
   $command .= " -directed";
  }
  if ($args{self}) {
   my $self = $args{self};
   $command .= " -self";
  }
  if ($args{no_single}) {
   my $no_single = $args{no_single};
   $command .= " -no_single";
  }
  if ($args{duplicate}) {
   my $duplicate = $args{duplicate};
   $command .= " -duplicate";
  }
  if ($args{col_conservation}) {
   my $col_conservation = $args{col_conservation};
   $command .= " -col_conservation";
  }
  if ($args{normal}) {
   my $normal = $args{normal};
   $command .= " -normal";
  }
  if ($args{inputgraph}) {
   my $input_graph = $args{inputgraph};
   chomp $input_graph;
   if ($input_graph ne "") {
#     my $tmp_input = `mktemp $TMP/random_graph-input-graph.XXXXXXXXXX`;
       my $tmp_input = &RSAT::util::make_temp_file("","random-graph-input-graph", 1,0);
       open TMP_IN, ">".$tmp_input or die "cannot open graph temp file ".$tmp_input."\n";
       print TMP_IN $input_graph;
       close TMP_IN;
       $tmp_input =~ s/\'//g;
       $tmp_input =~ s/\"//g;
       chomp $tmp_input;
       $command .= " -i '".$tmp_input."'";
   }
  }
  if ($args{nodefile}) {
   my $nodefile = $args{nodefile};
   chomp $nodefile;
#   my $tmp_input = `mktemp $TMP/random-graph-nodes.XXXXXXXXXX`;
   my $tmp_input = &RSAT::util::make_temp_file("","random-graph-nodes", 1,0);
   open TMP_IN, ">".$tmp_input or die "cannot open nodes temp file ".$tmp_input."\n";
   print TMP_IN $nodefile;
   close TMP_IN;
   $tmp_input =~ s/\'//g;
   $tmp_input =~ s/\"//g;
   chomp $tmp_input;
   $command .= " -nodefile '".$tmp_input."'";
  }
  my $extension = $args{outformat} || "tab";
  &run_WS_command($command, $output_choice, "random-graph", $extension);
}


################################################################
sub monitor {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $ticket = $args{"ticket"};
#  $ticket =~ s/.*\///;
  $ticket =~ s/www-data\/\d+\/\d+\/\d+\///;
  my $grep = `ps aux | grep $ticket | grep -v 'grep' | grep -v monitor`;
  if ($grep) {
#     return SOAP::Data->name('response' => {'status' => 'Running'});
      return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('status' => 'Running')))->attr({'xmlns' => ''});
  } else {
#     return SOAP::Data->name('response' => {'status' => 'Done'});
      return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('status' => 'Done')))->attr({'xmlns' => ''});
  }
}

################################################################
sub get_result {
  my ($self, $args_ref) = @_;
  my %args = %$args_ref;
  my $ticket = $args{"ticket"};
  my $tmp_outfile = $TMP."/".$ticket;
  my $result = '';
  open $TMP_OUT, $tmp_outfile or die "cannot open that bloody temp file ".$tmp_outfile."\n";
  while (my $line = <$TMP_OUT>) {
      $result .= $line;
  }
  close $TMP_OUT;
  my $error_file = $TMP."/".$ticket.".err";
  my $stderr;
  if (-s $error_file) {
      open ERROR, "$error_file";
      while (<ERROR>) {
	  unless (($_ =~ 'Use of uninitialized value') || ($_ =~ '^;') || ($_ =~ 'there is a difference in the software release')) {
	      $stderr .= $_;
	  }
	  ## RSAT warnings are added at the end of results
	  if ($_ =~'WARNING') {
	      $result .= "\n".$_;
	  }
      }
  }
  if ($stderr) {
      die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr");
  } else {
      return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('client' => $result),
							       SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile))))
	  ->attr({'xmlns' => ''});
#      return SOAP::Data->name('response' => {'server' => $tmp_outfile,
#	  'client' => $result});
  }
}

=pod

=item B<run_WS_command>

Run a command for the web services.

=cut
sub run_WS_command {
  my ($command, $output_choice, $method_name, $out_format) = @_;

  ## Report start time in the log file (depends on the satus of
  ## start_time property)
  local $start_time = &RSAT::util::StartScript();

  ## Define temporary output file and open it for writing
  my $tmp_outfile = &RSAT::util::make_temp_file("",$method_name, 1,0);
  $tmp_outfile .= ".".$out_format if ($out_format);
  my $TMP_OUT = open ">".$tmp_outfile || die "Cannot open temporary file ".$tmp_outfile;

  ## Generate the externally visible URL (accessible from Web site)
  my $result_URL = $tmp_outfile;
  $result_URL =~ s|$ENV{RSAT}/public_html/|$ENV{rsat_www}|g; ## Added by JvH 2014-03-10

  &UpdateLogFileWS(command=>$command,
		   tmp_outfile=>$tmp_outfile,
		   method_name=>$method_name,
		   output_choice=>$output_choice);

  if ($output_choice =~ /(\S+\@\S+)/) {
      ## Execute the command and send the result URL by email
      my $email_address = $output_choice;
      my $delay = "72 hours";

      &email_command($command, $email_address, $tmp_outfile, join(" ", "[RSATWS]", $method_name), $result_URL, $delay);
      #my %args;
      #$args{title} = join(" ", "[RSATWS]", $method_name);
      #&RSAT::util::EmailTheResult($command, $email_address, $tmp_outfile, %args);
      my $response = "The server is now processing your request.\n"; 
      $response .= "Once it will be finished, the result will become available at the following URL\n";
      $response .= "\t$result_URL\n";
      $response .= "When the result will be ready, you will be notified at your email address ($email_address).\n";
      $response .= "The result file will remain on the server for $delay.\n";;
#     return SOAP::Data->name('response' => {'command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command),
#					     'client' => $response});
      return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('server' => 'NA'),
 				                               SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
					                       SOAP::Data->name('client' => $response)))->attr({'xmlns' => ''});
  }

  if ($output_choice eq 'ticket') {
      $command .= " -o ".$tmp_outfile; ## -o must be used for monitor method to work
      my $ticket = $tmp_outfile;
      $ticket =~ s/$TMP\///;
      my $error_file = $tmp_outfile.".err";
      # Both stdout (1) and stderr (2) need to be redirected to allow background (&) mode
#      `$command 1>$tmp_outfile 2>$error_file &`;
      `$command &>$error_file &`;
#       return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('server' => $ticket),
# 							       SOAP::Data->name('rsat_site' => $ENV{rsat_site}),
# 							       SOAP::Data->name('rsat_www' => $ENV{rsat_www}),
# 							       SOAP::Data->name('rsat_ws' => $ENV{rsat_ws}),
# 							       SOAP::Data->name('command' =>"site: ".$ENV{rsat_site}." command: ".&RSAT::util::hide_RSAT_path($command))))
# 	  ->attr({'xmlns' => ''});
      return SOAP::Data->name('response' => \SOAP::Data->value(SOAP::Data->name('server' => $ticket),
							       SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
							       SOAP::Data->name('client' => 'NA')))
	->attr({'xmlns' => ''});
  }

  ## Execute the command on the server
#  my $result = `$command`;
#  my $stderr = `$command 2>&1 1>/dev/null`;

  local(*HIS_IN, *HIS_OUT, *HIS_ERR);
  my $childpid = open3(*HIS_IN, *HIS_OUT, *HIS_ERR, $command);
  my @outlines = <HIS_OUT>;    # Read till EOF.
  my @errlines = <HIS_ERR>;    # XXX: block potential if massive

  my $result = join('', @outlines);
  my $stderr;

  foreach my $errline(@errlines) {
      ## Some errors and RSAT warnings are not considered as fatal errors
      unless (($errline =~ 'Use of uninitialized value') || ($errline =~ 'Smartmatch is experimental') || ($errline =~ '^;') || ($errline =~ 'there is a difference in the software release')) {
	  $stderr .= $errline;
      }
      ## RSAT warnings are added at the end of results
      if ($errline =~'WARNING') {
	  $result .= $errline;
      }
  }

  close HIS_OUT;
  close HIS_ERR;

  $stderr = &error_handling($stderr, 1);

  ## Report execution time in the log file (depends on the satus of
  ## exec_time property)
  my $exec_time = &RSAT::util::ReportExecutionTime($start_time); ## This has to be done for all the commands sent to WS

  if ($stderr) {
      die SOAP::Fault -> faultcode('Server.ExecError') -> faultstring("Execution error: $stderr\ncommand: &RSAT::util::hide_RSAT_path($command)");
  }

  open $TMP_OUT, ">".$tmp_outfile or die "cannot open temp file ".$tmp_outfile."\n";
  print $TMP_OUT $result;
  close $TMP_OUT;

  if ($output_choice eq 'server') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => &RSAT::util::hide_RSAT_path($tmp_outfile)),
#TO FIX in RSATWS.wsdl		  SOAP::Data->name('URL' => $result_URL),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
			          SOAP::Data->name('client' => 'NA')))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'client') {
      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' => 'NA'),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  } elsif ($output_choice eq 'both') {
#      &RSAT::error::FatalError("HELLO", "tmp_outfile", $tmp_outfile, &RSAT::util::hide_RSAT_path($tmp_outfile));

      return SOAP::Data->name('response' => \SOAP::Data->value(
				  SOAP::Data->name('server' =>  &RSAT::util::hide_RSAT_path($tmp_outfile)),
#TO FIX in RSATWS.wsdl		  SOAP::Data->name('URL' => $result_URL),
				  SOAP::Data->name('command' => $ENV{rsat_site}.': '.&RSAT::util::hide_RSAT_path($command)),
				  SOAP::Data->name('client' => $result)))
	  ->attr({'xmlns' => ''});
  }
}


################################################################
## Run the command on the server and send an email when the task is done
sub email_command {
    my ($command, $email_address, $tmp_outfile, $title, $result_URL, $delay) = @_;

    my $email_message = "Your result is available at the following URL:\n\t$result_URL";
    $email_message .= "\nThe result file will remain there for $delay.";

    my $mail_command = $SCRIPTS."/send-mail -to \'".$email_address."\' -subject \'".$title."\'";

#    my $email_command =  "($command &>$tmp_outfile; ";
#    $email_command .= "echo \"$email_message\" | $mail_command) &";
    my $email_command =  $command." >> ".$tmp_outfile."; ";
    $email_command .= "echo \"".$email_message."\" | ".$mail_command." &";
    system $email_command;
}


=pod

=item B<UpdateLogFileWS>

Update a specific log file for the web services.

=cut
sub UpdateLogFileWS {
  my (%args) = @_; 
  my ($sec, $min, $hour,$day,$month,$year) = localtime(time);
  unless (defined($ENV{rsat_site})) {
    $ENV{rsat_site} = `hostname`;
    chomp($ENV{rsat_site});
  }
  my $log_file = join("", $ENV{RSAT}, "/logs/log-file_", $ENV{rsat_site}, "_WS", sprintf("_%04d_%02d", $year+1900,$month+1));
  system("chmod a+w $log_file");
#   print "LOG ### $log_file";
  if (open LOG, ">>".$log_file) {
    #flock(LOG,2);
    $date = &RSAT::util::AlphaDate();
    $date =~ s/\n//;
    print LOG join ("\t",
                    $date,
                    $ENV{rsat_site},
                    "$ENV{'REMOTE_USER'}\@$ENV{'REMOTE_ADDR'} ($ENV{'REMOTE_HOST'})",
                    $args{method_name},
                    $args{output_choice},
#                    $user_email,
#                    $args{message},
		    $args{tmp_outfile}, #temporary for debugging
		    $args{command} # temporary for debugging
                   ), "\n";
    #flock(LOG,8);
    close LOG;
  } else {
    die "Cannot write the webservice LOG file to $log_file, check permission\n";
  }
}


################################################################
## This function handles the error verbosity
##
## This can be very useful as the majority of the functions die on any error
## (even if this error is a simple warning).
sub error_handling {
  my ($stderr, $verbosity) = @_;
  my $result = "";
  if ($verbosity == 0) {
    $result = "";
  } elsif ($verbosity == 1) {
    my @stderrcp = split /\n/, $stderr;
    my @resultcp = ();
    for (my $i = 0; $i < scalar (@stderrcp); $i++) {
      my $line = $stderrcp[$i];
      if ($line =~ /deprecated/) {
        $i++;
      } else {
        push @resultcp, $line;
      }
    }
    $result = join "\n", @resultcp;

  } else {
    $result = $stderr;
  }
  return $result;
}

1;
