comparison MANUAL_INSTALL.txt @ 0:e8bd49794291 draft

Init repository with last lipidmaps_textsearch master version
author fgiacomoni
date Tue, 11 Apr 2017 03:47:06 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e8bd49794291
1 ## ****** Lipidmaps environnemnt : ****** ##
2 # version 2016.09.27 M Landi / F Giacomoni - INRA - METABOHUB - workflow4metabolomics.org core team
3
4 ## --- PERL compilator / libraries : --- ##
5 $ perl -v
6 This is perl, v5.10.1 (*) built for x86_64-linux-thread-multi
7
8 # libs CORE PERL :
9 use strict ;
10 no strict "refs" ;
11 use warnings ;
12 use Carp qw (cluck croak carp confess) ;
13 use Exporter ;
14 use diagnostics ;
15 use Data::Dumper ;
16 use POSIX ;
17 use Getopt::Long ;
18 use FindBin;
19
20 # libs CPAN PERL :
21 use LWP::UserAgent ;
22 use Text::CSV ;
23 use HTML::Template ;
24 use XML::Twig;
25 use Time::HiRes;
26
27 $ sudo perl -MCPAN -e shell
28 cpan> install Text::CSV
29
30 # libs pfem PERL : libs are now integrated
31 use lib::conf qw( :ALL ) ;
32 use lib::csv qw( :ALL ) ;
33 use lib::operations qw( :ALL ) ;
34 --
35
36 ## --- Conda compliant --- ##
37 This tool and its PERL dependencies are "Conda compliant".
38
39 ## --- R bin and Packages : --- ##
40 NA
41 --
42
43 ## --- Binary dependencies --- ##
44 NA - use only lipidmaps ws (http://www.lipidmaps.org/data/structure/LMSDSearch.php)
45 --
46
47 ## --- Config : --- ##
48 JS and CSS (used in HTML output format) are now hosted on cdn.rawgit.com server - no local config needed
49 --
50
51 ## --- XML HELP PART --- ##
52 one image :
53 lipidmaps.png
54 --
55
56 ## --- DATASETS OR TUTORIAL --- ##
57 Please find help on W4M: http://workflow4metabolomics.org/howto
58 --
59
60 ## --- ??? COMMENTS ??? --- ##
61 The Lipidmaps WS ask to sleep 20s between each query...
62 To use full funtionalities of html output files :
63 - check that sanitize_all_html option in universe_wsgi.ini file is uncomment and set to FALSE.
64 --