Changes between Version 25 and Version 26 of xQTLAdministratorInstall


Ignore:
Timestamp:
2011-09-08T12:06:54+02:00 (13 years ago)
Author:
jvelde
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • xQTLAdministratorInstall

    v25 v26  
    33= [wiki:xQTL xQTL workbench] - Installation and maintanance =
    44
    5 xQTL can be ran on any machine that has Java installed. To perform an installation, follow these steps.
     5xQTL can be installed, ran and updated on any machine that has Java installed. For safety, we recommend you perform these action as a regular UNIX user and not as root.
     6
     7=== Installation ===
    68
    79You will need: [http://ant.apache.org/ Ant], [http://subversion.apache.org/ Subversion], [http://www.java.com/ Java].[[BR]]
     
    2527* Install R so the ''Rplot'' plugin will work. And install the R packages to be able to run QTL mapping locally.[[BR]]
    2628* Run a default analysis to see that everything is setup correctly.
     29
     30=== Updating ===
     31
     32Consider creating an SH script to do the updating for you. For example, this script kills/starts the application on port 9000 and assumes you have used the above installation/checkour dirs:[[BR]]
     33{{{#!html
     34<font style="font-family: Courier">
     35kill -9 &#96;lsof -i :9000 -t&#96;<br>
     36cd ~/xqtl<br>
     37svn update molgenis molgenis_apps<br>
     38cd molgenis_apps<br>
     39ant -f xqtl_dev.xml clean_make<br>
     40nohup ant -f xqtl_dev.xml runOn -Dport=9000 &<br>
     41</font>
     42}}}
    2743
    2844=== Development and deployment ===