Difference between revisions of "GotCloud: Source Releases"

From Genome Analysis Wiki
Jump to navigationJump to search
(Created page with 'Back to parent: GotCloud The GotCloud software has been developed and tested on Linux Ubuntu 12.10 and 12.04.2 LTS. While it should work on other Linux systems, they hav…')
 
Line 13: Line 13:
 
#* Note: as the source builds, many messages will scroll through your terminal.  You may even see some warnings.  These messages are normal and expected.  As long as the build does not end with an error, you have successfully built the source.
 
#* Note: as the source builds, many messages will scroll through your terminal.  You may even see some warnings.  These messages are normal and expected.  As long as the build does not end with an error, you have successfully built the source.
  
(Replace $GCHOME with the location where you want it installed.
+
mkdir -p $GCHOME; cd $GCHOME  # Replace $GCHOME with the location where you want it installed.
 
 
mkdir -p $GCHOME; cd $GCHOME
 
 
  wget ftp://share.sph.umich.edu/gotcloud/gotcloud_latest.tgz  # Download
 
  wget ftp://share.sph.umich.edu/gotcloud/gotcloud_latest.tgz  # Download
 
  tar xvf gotcloud_latest.tgz --strip 1  # Extract
 
  tar xvf gotcloud_latest.tgz --strip 1  # Extract
  cd $GCHOME/src; make            # Build source
+
  cd src; make            # Build source
 
   
 
   
 
GotCloud requires the following tools to be installed.
 
GotCloud requires the following tools to be installed.

Revision as of 10:45, 19 March 2013

Back to parent: GotCloud

The GotCloud software has been developed and tested on Linux Ubuntu 12.10 and 12.04.2 LTS. While it should work on other Linux systems, they have not yet been tested. It is not supported on Windows.

The GotCloud software can be downloaded from: ftp://share.sph.umich.edu/gotcloud/gotcloud_latest.tgz

Here are the steps for installing from the source tar:

  1. Create & change to the directory where you want gotcloud installed
  2. Download the gotcloud tar from the ftp site.
  3. Extract the tar
  4. Build (compile) the source
    • Note: as the source builds, many messages will scroll through your terminal. You may even see some warnings. These messages are normal and expected. As long as the build does not end with an error, you have successfully built the source.
mkdir -p $GCHOME; cd $GCHOME   # Replace $GCHOME with the location where you want it installed.
wget ftp://share.sph.umich.edu/gotcloud/gotcloud_latest.tgz  # Download
tar xvf gotcloud_latest.tgz --strip 1  # Extract
cd src; make            # Build source

GotCloud requires the following tools to be installed. You can run $GCHOME/scripts/check_requirements.sh ...TBD – put in required programs/tools.

  • java (java-common default-jre on ubuntu)
  • make (make on ubuntu)
  • libssl (libssl0.9.8 on ubuntu)
  • gcc 4.4 or newer