Difference between revisions of "LibStatGen Repository"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 32: Line 32:
  
 
= Troubleshooting =
 
= Troubleshooting =
If you are having trouble compiling any of the versions, check [[StatGen Troubleshooting]] for help.  If that does not solve your problem, email me for support.
+
If you are having trouble compiling any of the versions, check [[libStatGen Troubleshooting]] for help.  If that does not solve your problem, email me for support.
  
  

Revision as of 14:43, 23 August 2011


Download

libStatGen Download Instructions


Dependencies

  • This software requires the following to be installed:
    • g++
    • development version of zlib (zlib1g-dev on ubuntu)
    • openssl and md5 (libssl-dev on ubuntu)
  • Compiles on Linux/Unix


Compile/Build

  1. From the base libStatGen directory, build the repository:
    • For normal (optimized) mode, type:
      • make or make opt
    • For debug, instead use:
      • make debug
    • For profiling, instead use:
      • make profile
    • For all three (optimized, debug, and profile), type:
      • make all


This builds the library.

Now all of the programs/tools are in separate repositories and can be built separately.

Troubleshooting

If you are having trouble compiling any of the versions, check libStatGen Troubleshooting for help. If that does not solve your problem, email me for support.


Programs in the StatGen Repository

The list of programs in the repository is documented at: StatGen Programs


Creating your Own Programs Using the StatGen Library

The StatGen Library is part of the StatGen Repository. You can use the library to create your own C++ programs.

Using the StatGen Library