8000 GitHub - blmoore/octopus: Bayesian haplotype-based mutation calling
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

blmoore/octopus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Octopus Logo

Build Status MIT license Gitter


Warning: this project is incomplete - it may be unstable and contain bugs.


Octopus is a mapping-based variant caller that implements several calling models within a unified haplotype-aware framework. Octopus explicitly stores allele phasing infomation which allows haplotypes to be dynamically excluded and extended. Primarily this means octopus can jointly consider allele sets far exceeding the cardinality of other approaches, but perhaps more importantly, it allows marginalisation over posterior distributions in haplotype space at specific loci. In practise this means octopus can achieve far greater allelic genotyping accuracy than other methods, but can also infer conditional or unconditional phase probabilities directly from genotype probability distributions. This allows octopus to report consistent allele event level variant calls and independent phase information.

Requirements

  • A C++14 compiler with SSE2 support
  • A C++14 standard library implementation
  • Git 2.5 or greater
  • Boost 1.65 or greater
  • htslib 1.4 or greater
  • CMake 3.9 or greater
  • Optional:
    • Python3 or greater

Obtaining requirements on OS X

On OS X, Clang is recommended. All requirements can be installed using the package manager Homebrew:

$ brew update
$ brew install git
$ brew install --with-clang llvm
$ brew install boost
$ brew install cmake
$ brew tap homebrew/science # required for htslib
$ brew install htslib
$ brew install python3

Note if you already have any of these packages installed via Homebrew on your system the command will fail, but you can update to the latest version using brew upgrade.

Obtaining requirements on Ubuntu

Depending on your Ubuntu distribution, some requirements can be installed with apt-get. It may be preferable to use GCC as this will simplify installing Boost:

$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update && sudo apt-get upgrade
$ sudo apt-get install gcc-7
$ sudo apt-get install git-all
$ sudo apt-get install python3

The other packages will need to be installed manually:

  • CMake installation instructions are given here.
  • Htslib installation instructions are given here. Note you may need to install autoconf (sudo apt-get install autoconf).
  • Instructions on installing Boost are given here.

These instructions are replicated in the user documentation (Appendix).

Installation

Octopus can be built and installed on a wide range of operating systems including most Unix based systems (Linux, OS X) and Windows (once MSVC is C++14 feature complete).

Quick installation with Python3

Installing octopus first requires obtaining a copy the source code. In the command line, move to an appropriate install directory and execute:

$ git clone https://github.com/luntergroup/octopus.git && cd octopus

The default branch is develop, which is not always stable. You may prefer to switch to the master branch which always has the latest release:

$ git checkout master

Installation is easy using the Python3 install script. If your default compiler satisfies the minimum requirements just execute:

$ ./install.py

otherwise explicitly specify the compiler to use:

$ ./install.py --cxx_compiler /path/to/cpp/compiler # or just the compiler name if on your PATH

For example, if the requirement instructions above were used:

$ ./install.py --cxx_compiler clang++-4.0

On some systems, you may also need to specify a C compiler which is the same version as your C++ compiler, otherwise you'll get lots of link errors. This can be done with the --c_compiler option:

$ ./install.py --cxx_compiler g++-7 --c_compiler gcc-7 

By default this installs to /bin relative to where you installed octopus. To install to a root directory (e.g. /usr/local/bin) use:

$ ./install.py --root

this may prompt you to enter a sudo password.

If anything goes wrong with the build process and you need to start again, be sure to add the command --clean!

Installing with CMake

If Python3 isn't available, the binaries can be installed manually with CMake:

$ git clone https://github.com/luntergroup/octopus.git
$ cd octopus/build
$ cmake .. && make install

By default this installs to the /bin directory where octopus was installed. To install to root (e.g. /usr/local/bin) use the -D option:

$ cmake -DINSTALL_ROOT=ON ..

CMake will try to find a suitable compiler on your system, if you'd like you use a specific compiler use the -D option, for example:

$ cmake -D CMAKE_C_COMPILER=clang-4.0 -D CMAKE_CXX_COMPILER=clang++-4.0 ..

You can check installation was successful by executing the command:

$ octopus --help

Running Tests

Octopus currently has limited unit tests (more are planned!). To install and run them, use the Python3 install script in the test directory:

$ test/install.py

Examples

Here are some common use-cases to get started. These examples are by no means exhaustive, please consult the documentation for explanations of all options, algorithms, and further examples. For a more in depth example, refer to the whole genome germline calling case study.

Note by default octopus will output all calls in VCF format to standard output, in order to write calls to a file (.vcf, .vcf.gz, and .bcf are supported), use the command line option --output (-o).

Calling germline variants in an individual

This is the simplest case, if the file NA12878.bam contains a single sample, octopus will default to its individual calling model:

$ octopus --reference hs37d5.fa --reads NA12878.bam

or less verbosely:

$ octopus -R hs37d5.fa -I NA12878.bam

By default, octopus automatically detects and calls all samples contained in the input read files. To call a subset of these samples, use the --samples (-S) option:

$ octopus -R hs37d5.fa -I multi-sample.bam -S NA12878

Targeted calling

By default, octopus will call all possible regions (as specified in the reference FASTA). In order to select a set of target regions, use the --regions (-T) option:

$ octopus -R hs37d5.fa -I NA12878.bam -T 1 2:30,000,000- 3:10,000,000-20,000,000

Or conversely a set of regions to exclude can be given with --skip-regions (-K):

$ octopus -R hs37d5.fa -I NA12878.bam -K 1 2:30,000,000- 3:10,000,000-20,000,000

Calling de novo mutations in a trio

To call germline and de novo mutations in a trio, either specify both maternal (--maternal-sample; -M) and paternal (--paternal-sample; -F) samples:

$ octopus -R hs37d5.fa -I NA12878.bam NA12891.bam NA12892.bam -M NA12892 -F NA12891

The trio can also be specified with a PED file:

$ octopus -R hs37d5.fa -I NA12878.bam NA12891.bam NA12892.bam --pedigree ceu_trio.ped

Calling somatic mutations in tumours

To call germline and somatic mutations in a paired tumour-normal sample, just specify which sample is the normal (--normal-sample; -N):

$ octopus -R hs37d5.fa -I normal.bam tumour.bam --normal-sample NORMAL

It is also possible to genotype multiple tumours from the same individual jointly:

$ octopus -R hs37d5.fa -I normal.bam tumourA.bam tumourB --normal-sample NORMAL

If a normal sample is not present the cancer calling model must be invoked explicitly:

$ octopus -R hs37d5.fa -I tumour1.bam tumour2.bam -C cancer

Note however, that without a normal sample, somatic mutation classification power is significantly reduced.

Joint variant calling (in development)

Multiple samples from the same population, without pedigree information, can be called jointly:

$ octopus -R hs37d5.fa -I NA12878.bam NA12891.bam NA12892.bam

Joint calling samples may increase calling power, especially for low coverage sequencing.

HLA genotyping

To call phased HLA genotypes, increase the default phase level:

$ octopus -R human.fa -I NA12878.bam -t hla-regions.txt -l aggressive

Multithreaded calling

Octopus has built in multithreading capacbilities, just add the --threads command:

$ octopus -R hs37d5.fa -I NA12878.bam --threads

This will let octopus automatically decide how many threads to use, and is the recommended approach as octopus can dynamically juggle thread usage at an algorithm level. However, a strict upper limit on the number of threads can also be used:

$ octopus -R hs37d5.fa -I NA12878.bam --threads=4

Fast calling

By default, octopus is geared towards more accurate variant calling which requires the use of complex (slow) algorithms. However, to acheive faster runtimes (at the cost of decreased calling accuray) many of these features can be disabled. There are two helper commands that setup octopus for faster variant calling, --fast and --very-fast, e.g.:

$ octopus -R hs37d5.fa -I NA12878.bam --fast

Note this does not turn on multithreading or increase buffer sizes.

Output format

Octopus outputs variants using a simple but rich VCF format (see user documentation for full details). For example, two overlapping deletions are represented like:

#CHROM	POS	ID	REF	ALT	QUAL	FILTER	INFO	FORMAT	NA12878
1	102738191	.	ATTATTTAT	A,*	.	.	.	GT	1|2
1	102738191	.	ATTATTTATTTAT	A	.	.	.	GT	.|1

in contrast to how such a site would usually be represented, either:

#CHROM	POS	ID	REF	ALT	QUAL	FILTER	INFO	FORMAT	NA12878
1	102738191	.	ATTATTTAT	A	.	.	.	GT	1/0
1	102738191	.	ATTATTTATTTAT	A	.	.	.	GT	1/0

which is inconsistent as the reference is deduced in each record, or:

#CHROM	POS	ID	REF	ALT	QUAL	FILTER	INFO	FORMAT	NA12878
1	102738191	.	ATTATTTATTTAT	ATTAT,A	.	.	.	GT	1/2

which is at least consistent, but rapidly becomes unmanageable as the length and number of overlapping variants increases.

Octopus's representation is both succinct and consistent. The * allele denotes an upstream deletion, while the . in the genotype of the second record indicates the allele is missing due to a previous event. As the records are phased, the called haplotypes can be unambiguously reconstructed when the VCF file is read sequentially.

However, some existing tools will not recognise this format. For example, RTG Tools does not fully support this representation. Therefore, octopus has an option to also produce calls using a more typical VCF format (like the first of the two examples). To request this, use the --legacy command line option. This option is only available when outputting calls to a file (i.e. not stdout).

Documentation

Complete user and developer documentation is available in the doc directory.

Support

Please report any bugs or feature requests to the octopus issue tracker.

Contributing

Contributions are very welcome, but please first review the contribution guidelines.

Authors

Daniel Cooke and Gerton Lunter

Citing

TBA

License

Please refer to LICENSE.

About

Bayesian haplotype-based mutation calling

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 96.0%
  • C 2.7%
  • CMake 1.1%
  • Python 0.2%
0