BuysDB / SCICoNE

Single-cell copy number calling and event history reconstruction.

Home Page:https://www.biorxiv.org/content/10.1101/2020.04.28.065755v1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

circleci C++ Standard License

Single-cell copy number calling and event history reconstruction.

A statistical model and MCMC algorithm tailored to single-cell copy number profiling from shallow whole-genome DNA sequencing data. SCICoNE reconstructs the history of copy number events in the tumour and uses these evolutionary relationships to identify the copy number profiles of the individual cells.

Quick start

SCICoNE takes a read counts matrix of cells by genomic bins and outputs the copy number profile of each cell and the underlying event history.

Requirements

  • C++ compiler that supports C++14 standards (e.g. gcc>=5.2.0, clang>=5.0.0))
  • CMake >= 3.9
  • OpenMP >= 4.5
  • NLopt >= 2.6.2

Installation

Once the requirements are in place, downloading and installing SCICoNE takes about 5 minutes.

git clone git@github.com:cbg-ethz/SCICoNE.git # Clone the repository
cd SCICoNE
mkdir build && cd build                       # Create and enter the build directory
cmake ../scicone/                             # Compile the program with cmake
make                                          # Build the executables
cd ..                                         # Return to root directory

Python package

We also provide a Python 3 package to facilitate plotting and easily integrate SCICoNE with other data analysis tools. This interface runs the C++ binaries and reads the outputs into numpy arrays. Even if you don't want to use the complete package, we recommend you install it to facilitate usage of the C++ command line interface.

pip install pyscicone/

About

Single-cell copy number calling and event history reconstruction.

https://www.biorxiv.org/content/10.1101/2020.04.28.065755v1

License:GNU General Public License v3.0


Languages

Language:C++ 53.7%Language:Python 37.6%Language:C 7.0%Language:Shell 0.8%Language:CMake 0.6%Language:R 0.3%