sequenceTools: A package with tools for processing DNA sequencing data

[ bioinformatics, gpl, library, program ] [ Propose Tags ]

The tools in this package process sequencing Data, in particular from ancient DNA sequencing libraries. Key tool in this package is pileupCaller, a tool to randomly sample genotypes from sequencing data.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.4.0.1, 1.4.0.2, 1.4.0.3, 1.4.0.4, 1.4.0.5, 1.5.0, 1.5.2, 1.5.3.1
Change log Changelog.md
Dependencies ansi-wl-pprint (>=0.6.9), base (>=4.12.0.0 && <5), bytestring (>=0.10.8.2), foldl (>=1.4.5), lens-family (>=1.2.3), optparse-applicative (>=0.14.3.0), pipes (>=4.3.11), pipes-group (>=1.0.12), pipes-ordered-zip (>=1.1.0), pipes-safe (>=2.3.1), random (>=1.1), rio (>=0.1.11.0), sequence-formats (>=1.4.1), sequenceTools, split (>=0.2.3.3), vector (>=0.12.0.3) [details]
License GPL-3.0-only
Author Stephan Schiffels
Maintainer stephan.schiffels@mac.com
Category Bioinformatics
Uploaded by stephan_schiffels at 2019-09-13T14:50:33Z
Distributions LTSHaskell:1.5.3.1, NixOS:1.5.3.1, Stackage:1.5.3.1
Executables genoStats, vcf2eigenstrat, pileupCaller
Downloads 2413 total (31 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-09-13 [all 1 reports]

Readme for sequenceTools-1.4.0.3

[back to package description]

SequenceTools

Anaconda package

(bioconda package available thanks to apeltzer!)

This repository contains some programs that I use for processing sequencing data.

Simple Installation of the main tools

  1. Download stack (https://docs.haskellstack.org/en/stable/README/#how-to-install).
  2. Run stack install sequenceTools --resolver nightly. You should now have the executables from this package under ~/.local/bin.
  3. Add ~/.local/bin to your PATH, for example by adding to your ~/.profile or ~/.bash_profile the line PATH=$PATH:$HOME/.local/bin. Run source ~/.profile or source ~/.bash_profile, respectively, to update your path.
  4. Run pileupCaller --version. It should output 1.4.0. You're all set.

pileupCaller

The main tool in this repository is the program pileupCaller to sample alleles from low coverage sequence data. The first step is to generate a “pileup” file at all positions you wish to genotype. To do that, here is a typical command line, which restricts to mapping and base quality of 30:

samtools mpileup -R -B -q30 -Q30 -l <list_of_positions.txt> \
    -f <reference_genome.fasta> \
    Sample1.bam Sample2.bam Sample3.bam > pileup.txt

Important Note: You should definitely use the -B flag, which disables base alignment quality recalibration. This mechanism is turned on by default and causes huge reference bias with low coverage ancient DNA data. This flag disables the mechanism.

In the above command line, the file "list_of_positions.txt" should either contain positions (0-based) or a bed file (see samtools manual for details). The output is a simple text file with all positions that could be genotyped in the three samples.

Next, you need to run my tool pileupCaller, which you run like this:

pileupCaller --randomHaploid --sampleNames Sample1,Sample2,Sample3 \
    --samplePopName MyPop -f <Eigenstrat.snp> \
    -e <My_output_prefix> < pileup.txt

Here, options --sampleNames gives the names of the samples that is output in the Eigenstrat *.ind file, and and -–samplePopName is optional to also give the population names in that file (defaults to Unknown, you can also change it later in the output). Then, option -f gives an Eigenstrat positions file. This is important because the pileup file only contains sites which could be called in at least one of your samples. In order to later merge your dataset with another Eigenstrat file, pileupCaller will check every position in the other Eigenstrat file to make sure every position is output with the correct alleles and missing genotypes if appropriate. Finally, the -e option specifies Eigenstrat as output format and gives the prefix for the *.ind, *.pos and *.geno files. Without the -e option, pileupCaller will output in FreqSum format, described here, which is useful for debugging your pipeline, since it's just a single file that is output into the terminal and can therefore easily be inspected.

You can also get some help by typing pileupCaller -h, which shows a lot more option, for example the sampling method, minimal coverage and other important options.

Note that you can also fuse the two steps above into one unix pipe:

samtools mpileup -R -B -q30 -Q30 -l <list_of_positions.txt> \
    -f <reference_genome.fasta> \
    Sample1.bam Sample2.bam Sample3.bam | \
pileupCaller --randomHaploid --sampleNames Sample1,Sample2,Sample3 \
    --samplePopName MyPop -f <Eigenstrat.snp> \
    -e <My_output_prefix>

There is however an issue here: If you have aligned your read data to a version of the reference genome that uses chr1, chr2 and so on as chromosome names, the resulting Eigenstrat file will be valid, but won't merge with other Eigenstrat datasets that use chromosome names 1, 2 and so on. I would therefore recommend to strip the chr from your chromosome names if necessary. You can do that easily using a little UNIX filter using the sed tool. In the full pipeline, it looks like this:

samtools mpileup -R -B -q30 -Q30 -l <list_of_positions.txt> \
    -f <reference_genome.fasta> \
    Sample1.bam Sample2.bam Sample3.bam | sed 's/chr//' | \
pileupCaller --sampleNames Sample1,Sample2,Sample3 \
    --samplePopName MyPop -f <Eigenstrat.snp> \
    -o EigenStrat -e <My_output_prefix>

vcf2eigenstrat

Simple tool to convert a VCF file to an Eigenstrat file. Pretty self-explanatory. Please run vcf2eigenstrat --help to output some documentation.

genoStats

A simple tool to get some per-individual statistics from an Eigenstrat or Freqsum-file. Run genoStats --help for documentation.