Skip to content
This repository was archived by the owner on Feb 23, 2018. It is now read-only.
/ sequtils Public archive

Tools for manipulation of (pre-NGS-era) sequence data. (Probably only for old folks at this point in time...)

License

GPL-2.0, GPL-2.0 licenses found

Licenses found

GPL-2.0
LICENSE
GPL-2.0
COPYING
Notifications You must be signed in to change notification settings

molpopgen/sequtils

Repository files navigation

##This is a retired package

As of July 13, 2015, this package is "retired" and will no longer be supported or maintained.

The programs in this package have their origin in the days of using Sanger sequencing to study genetic variation. The movement towards short-read-based resequencing means that software like this may not be applicable to modern data sets based on modest coverage.

This software did its job for a decade or more, and still has some use in certain applications, but it is time to stop supporting it.

"Retired" means that this code:

  • Will no longer be updated to track the development of libsequence.
  • Bugs will not be fixed, unless they trace back to libsequence itself.
  • Installation issues, etc., will not be dealt with

#sequtils

This is a collection of old utilities for manipulating DNA sequence data.

###Revision history

Here

###Source code

The source code is available here

###Dependencies

The package dependes on the following libraries for compilation:

In addition, you'll need a compiler supporting the C++11 language standard.

###Installation

Simplest case:

./configure
make
sudo make install

Installing into your home directory:

./configure --prefix=$HOME
make
make install

Installing when dependencies are in non-standard locations:

(for this example, I'm assuming dependencies are installed into /opt)

./configure CXXFLAGS=-I/opt/include LDFLAGS=-L/opt/lib
make 
sudo make install

If the depdendencies are in your home folder:

./configure CXXFLAGS=-I/$HOME/include LDFLAGS=-L/$HOME/lib
make 
make install

The options to ./configure shown above may be mixed and matched.

###Documentation

The following programs have "man" pages that will be available after installation:

  • clustalwtofasta
  • revcom
  • toLDhat
  • trimallgaps

About

Tools for manipulation of (pre-NGS-era) sequence data. (Probably only for old folks at this point in time...)

Resources

License

GPL-2.0, GPL-2.0 licenses found

Licenses found

GPL-2.0
LICENSE
GPL-2.0
COPYING

Stars

Watchers

Forks

Packages

No packages published